using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace Public_API.Shared.Models { public class Sensor { [Key] public int sensorID { get; set; } public decimal locationLong { get; set; } public decimal locationLat { get; set; } public string locationCity { get; set; } public string friendlyName { get; set; } } }