presence/Demo/Data/LocalData/Entity/Group.cs
Class_Student 85738972fe init
2024-10-21 15:42:00 +03:00

16 lines
306 B
C#

using System;
namespace Demo.Data.LocalData.Entity
{
public class Group
{
public required int Id { get; set; }
public required string Name { get; set; }
internal Domain.Models.Group ToModel()
{
throw new NotImplementedException();
}
}
}