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