28 lines
910 B
C#
28 lines
910 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Thermo.Active.Model.ConfigModels
|
|
{
|
|
public class MaintenanceConfigModel
|
|
{
|
|
public int Id { 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 Dictionary<string, string> LocalizedDescription { get; set; }
|
|
public string UnitOfMeasure { get; set; }
|
|
}
|
|
|
|
public class ContactModel
|
|
{
|
|
public Boolean Visible { get; set; }
|
|
public string Name { get; set; }
|
|
public string Company { get; set; }
|
|
public string Email { get; set; }
|
|
public string PhoneNumber { get; set; }
|
|
public string WebSite { get; set; }
|
|
}
|
|
} |