-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTOUDataModel.cs
More file actions
24 lines (23 loc) · 772 Bytes
/
Copy pathTOUDataModel.cs
File metadata and controls
24 lines (23 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using Common.Module.Model;
using System;
using System.Collections.Generic;
namespace Common.Module.Models
{
public class TOUDataModel : DataModelBase
{
public double? Energy { get; set; }
public double? MaximumDemad { get; set; }
public DateTime? TimeOfMaxDemand { get; set; }
public string Unit { get; set; }
public string Period { get; set; }
public int BillingResetCount { get; set; }
public DateTime? BillingResetCountDateTime { get; set; }
public string Rate { get; set; }
public string DlsActive { get; set; }
public TOUDataModel()
{
this.IsValidData = true;
this.InvalidDataList = new Dictionary<string, string>();
}
}
}