Overflow/Overflow/SouthernWater/Spill.cs
Andy Pack 4c5fa9e0e6
Some checks are pending
ci / build (8.0.x) (push) Waiting to run
ci / build-Docker (push) Blocked by required conditions
adding wasm client project, github actions, radzen
2024-06-09 18:43:32 +01:00

23 lines
748 B
C#

using System.Text.Json.Serialization;
using MongoDB.Bson;
using MongoDB.Bson.Serialization.Attributes;
namespace Overflow.SouthernWater;
public class Spill
{
[JsonPropertyName("id")]
public int sw_id { get; set; }
public int eventId { get; set; }
public int siteUnitNumber { get; set; }
public string bathingSite { get; set; }
public DateTime eventStart { get; set; }
public DateTime eventStop { get; set; }
public int duration { get; set; }
public string status { get; set; }
public int associatedSiteId { get; set; }
public string outfallName { get; set; }
public bool isImpacting { get; set; }
public int overFlowSiteId { get; set; }
public List<Spill> historicSpillsList { get; set; }
}