xxxproject/Demo/Data/Entity/Group.cs

16 lines
293 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-10-30 09:11:19 +00:00
namespace Demo.Data.Entity
{
public class GroupLocalEntity
{
public required int Id { get; set; }
public required string Name { get; set; }
}
}