2024-08-03 19:12:18 +04:00

12 lines
249 B
C#

using ServiceStationDataModels;
using System.ComponentModel;
namespace ServiceStationContracts.ViewModels
{
public class ReportViewModel : IReportModel
{
public int Count { get; set; }
public int ID { get; set; }
}
}