Coursach/Course/Contracts/SearchModels/WorkshopSearchModel.cs

13 lines
308 B
C#
Raw Normal View History

2024-04-27 12:35:20 +04:00
namespace Contracts.SearchModels
{
public class WorkshopSearchModel
{
public int? Id { get; set; }
public string? Title { get; set; }
public int? UserId { get; set; }
public int? DetailId { get; set; }
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
2024-04-27 12:35:20 +04:00
}
}