PIbd-23_Elatomtsev_L.K._SUB.../DeviceContracts/SearchModels/CabinetSearchModel.cs
2024-05-13 09:00:08 +04:00

9 lines
216 B
C#

namespace DeviceContracts.SearchModels
{
public class CabinetSearchModel
{
public int? Id { get; set; }
public string? Room { get; set; }
public int? Building { get; set; }
}
}