12 lines
227 B
C#
Raw Normal View History

2024-04-30 01:41:35 +03:00
using ServiceStationDataModels;
namespace ServiceStationContracts.BindingModels
{
public class ReportBindingModel : IReportModel
{
2024-04-30 19:55:37 +03:00
public int Count { get; set; }
2024-04-30 01:41:35 +03:00
2024-04-30 19:55:37 +03:00
public int Id { get; set; }
2024-04-30 01:41:35 +03:00
}
}