12 lines
249 B
C#
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; }
|
|
}
|
|
} |