10 lines
230 B
C#
10 lines
230 B
C#
|
namespace DeviceDataModels.Models
|
|||
|
{
|
|||
|
public interface IServiceModel : IId
|
|||
|
{
|
|||
|
string Description { get; }
|
|||
|
DateOnly StartDate { get; }
|
|||
|
DateOnly? EndDate { get; }
|
|||
|
int DeviceId { get; }
|
|||
|
}
|
|||
|
}
|