Coursach/Course/Contracts/SearchModels/MachineSearchModel.cs

10 lines
182 B
C#
Raw Normal View History

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