a93aaba321
Fix offsets
25 lines
769 B
C#
25 lines
769 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Step.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 string Name { get; set; }
|
|
public string Email { get; set; }
|
|
public string PhoneNumber { get; set; }
|
|
}
|
|
} |