using System; namespace PSTW_CentralSystem.Models { public class MarineTarball { public int Id { get; set; } // Maps to 'id' public string ReportID { get; set; } // Maps to 'reportID' public string FirstSampler { get; set; } // Maps to 'firstSampler' public string SecondSampler { get; set; } // Maps to 'secondSampler' public DateTime DateSample { get; set; } // Maps to 'dateSample' public TimeSpan TimeSample { get; set; } // Maps to 'timeSample' public string StationID { get; set; } // Maps to 'stationID' public string ClassifyID { get; set; } // Maps to 'classifyID' public double Latitude { get; set; } // Maps to 'latitude' public double Longitude { get; set; } // Maps to 'longitude' public double GetLatitude { get; set; } // Maps to 'getLatitude' public double GetLongitude { get; set; } // Maps to 'getLongitude' public DateTime Timestamp { get; set; } // Maps to 'timestamp' } }