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

20 lines
437 B
C#
Raw Normal View History

2023-03-08 12:20:33 +00:00
namespace InnovEnergy.App.Backend.Model;
2023-02-16 12:57:06 +00:00
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; } = "";
}