using DeviceDataModels.Models; namespace DeviceContracts.BindingModels { public class ServiceBindingModel : IServiceModel { public int Id { get; set; } public string Description { get; set; } = string.Empty; public DateOnly StartDate { get; set; } public DateOnly? EndDate { get; set; } public int DeviceId { get; set; } } }