Coursach/Course/Contracts/SearchModels/WorkshopSearchModel.cs

10 lines
183 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; }
}
}