From abc3cc11d2d37148473b94dd6f93817a2036ab19 Mon Sep 17 00:00:00 2001 From: test Date: Wed, 23 Oct 2024 08:09:07 +0000 Subject: [PATCH] add row --- Demo/Data/LocalData/Entity/Group.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Demo/Data/LocalData/Entity/Group.cs b/Demo/Data/LocalData/Entity/Group.cs index 6041311..3afdaae 100644 --- a/Demo/Data/LocalData/Entity/Group.cs +++ b/Demo/Data/LocalData/Entity/Group.cs @@ -9,6 +9,7 @@ namespace Demo.domain.Models public class GroupLocalEntity { public required int Id { get; set; } + public required int NewId { get; set; } public required string Name { get; set; } }