12 lines
227 B
C#
12 lines
227 B
C#
using ServiceStationDataModels;
|
|
|
|
namespace ServiceStationContracts.BindingModels
|
|
{
|
|
public class ReportBindingModel : IReportModel
|
|
{
|
|
public int Count { get; set; }
|
|
|
|
public int Id { get; set; }
|
|
}
|
|
}
|