10 lines
230 B
C#
Raw Normal View History

2024-05-13 09:00:08 +04:00
namespace DeviceDataModels.Models
{
public interface IServiceModel : IId
{
string Description { get; }
DateOnly StartDate { get; }
DateOnly? EndDate { get; }
int DeviceId { get; }
}
}