Add localized maintenances description

This commit is contained in:
Lucio Maranta
2018-07-10 15:07:37 +02:00
parent b5bd21187b
commit bd7fbb1503
7 changed files with 44 additions and 18 deletions
@@ -6,13 +6,13 @@ namespace Step.Model.ConfigModels
public class MaintenanceConfigModel
{
public int Id { get; set; }
public Dictionary<string, string> LocalizedNames { get; set; }
public Dictionary<string, string> LocalizedName { get; set; }
public TimeSpan Intervall { get; set; }
public DateTime Deadline { get; set; }
public string Type { get; set; }
public int CouterId { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public Dictionary<string, string> LocalizedDescription { get; set; }
public string UnitOfMeasure { get; set; }
}
}