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

20 lines
433 B
C#
Raw Normal View History

2023-02-24 11:58:47 +00:00
namespace Innovenergy.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; } = "";
}