Coursach/Course/Contracts/SearchModels/WorkshopSearchModel.cs

11 lines
220 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; }
2024-04-27 12:35:20 +04:00
}
}