2b403685b1
Create maintenance api
25 lines
568 B
C#
25 lines
568 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static Step.Model.Constants;
|
|
|
|
namespace Step.Model.DTOModels.MaintenanceModels
|
|
{
|
|
public class DTONewMaintenanceModel
|
|
{
|
|
public string Title { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public double? Interval { get; set; }
|
|
|
|
public DateTime Deadline { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
|
|
public MAINTENANCE_UNIT_OF_MEASURE UnitOfMeasure { get; set; }
|
|
}
|
|
}
|