ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/BindingModels/GroupBindingModel.cs

13 lines
304 B
C#
Raw Permalink Normal View History

2024-02-02 11:10:52 +04:00
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; }
}
}