Add multiple images to one geopoint

This commit is contained in:
Thomas Fransolet 2021-05-28 17:57:19 +02:00
parent 636cefaa69
commit 1d308e27bd

View File

@ -19,12 +19,18 @@ namespace Manager.Interfaces.DTO
public int Id { get; set; } public int Id { get; set; }
public List<TranslationDTO> Title { get; set; } public List<TranslationDTO> Title { get; set; }
public List<TranslationDTO> Description { get; set; } public List<TranslationDTO> Description { get; set; }
public string ImageResourceId { get; set; } public List<ImageGeoPoint> Images { get; set; }
public string ImageSource { get; set; } // url to resource id (local) or on internet
public string Latitude { get; set; } public string Latitude { get; set; }
public string Longitude { get; set; } public string Longitude { get; set; }
} }
public class ImageGeoPoint
{
public string ImageResourceId { get; set; }
public string ImageSource { get; set; } // url to resource id (local) or on internet
public int Order { get; set; } // Order to show // useless ?
}
public enum MapType public enum MapType
{ {
none, none,