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

22 lines
436 B
C#
Raw Normal View History

2023-02-16 12:57:06 +00:00
using SQLite;
namespace 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; } = "";
}