Add multiple images to one geopoint
This commit is contained in:
parent
636cefaa69
commit
1d308e27bd
@ -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,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user