12 lines
374 B
C#
Raw Normal View History

2024-04-29 17:06:56 +04:00
namespace UniversityContracts.SearchModels
{
public class ClassSearchModel
{
public int? Id { get; set; }
public int? EmployeeId { get; set; }
2024-04-29 20:07:03 +04:00
public string Name { get; set; } = string.Empty;
public string Time { get; set; } = string.Empty;
2024-04-29 17:06:56 +04:00
public int Price { get; set; }
public List<int>? PurchasesIds { get; set; }
}
}