ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/BindingModels/GroupBindingModel.cs
Данияр Аглиуллов 310f02160b 1 раз
2024-02-02 11:10:52 +04:00

13 lines
304 B
C#

using EkzamenDataModels;
namespace EkzamenContracts.BindingModels
{
public class GroupBindingModel : IGroupModel
{
public int Id { get; set; }
public string Name { get; set; }
public string Direction { get; set; }
public DateTime Created { get; set; }
}
}