2024-04-30 01:41:35 +03: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; }
}
}