This commit is contained in:
jozsef.b@aycode.com 2023-12-13 22:39:19 +01:00
commit 68c8268634
1 changed files with 6 additions and 0 deletions

View File

@ -27,8 +27,14 @@ namespace AyCode.Entities.Locations
[Key, DatabaseGenerated(DatabaseGeneratedOption.None)]
public Guid Id { get; set; }
[DataType(DataType.Custom)]
[Display(Name = "Longitude")]
public double Longitude { get; set; }
[DataType(DataType.Custom)]
[Display(Name = "Latitude")]
public double Latitude { get; set; }
[DataType(DataType.Text)]
[Display(Name = "Address")]
public string? Address { get; set; }
}