2024-04-30 01:41:35 +03:00

12 lines
229 B
C#

using ServiceStationDataModels;
namespace ServiceStationContracts.BindingModels
{
public class ReportBindingModel : IReportModel
{
public int Count { get; set; }
public int Id { get; set; }
}
}