presence/Data/LocalData/Entity/Group.cs
Class_Student e771fe1659 new
2024-12-06 11:51:13 +03:00

15 lines
297 B
C#

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