xxxproject/Demo/Data/Entity/Group.cs
Class_Student 6b9b5a424f init
2024-10-30 12:11:19 +03:00

16 lines
293 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demo.Data.Entity
{
public class GroupLocalEntity
{
public required int Id { get; set; }
public required string Name { get; set; }
}
}