Innovenergy_trunk/csharp/App/Backend/Model/Installation.cs

20 lines
437 B
C#

namespace InnovEnergy.App.Backend.Model;
public class Installation : TreeNode
{
public String Location { get; set; } = "";
public String Region { get; set; } = "";
public String Country { get; set; } = "";
// TODO: make relation
public String OrderNumbers { get; set; } = "";
public Double Lat { get; set; }
public Double Long { get; set; }
public String S3Bucket { get; set; } = "";
}