Added id to categorie to fix bug
This commit is contained in:
parent
0ccfda46a1
commit
b87256e29d
@ -23,7 +23,8 @@ namespace Manager.Interfaces.DTO
|
|||||||
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 List<ContentGeoPoint> contents { get; set; }
|
public List<ContentGeoPoint> contents { get; set; }
|
||||||
public CategorieDTO categorie { get; set; }
|
public CategorieDTO categorie { get; set; } // TO DELETE IN FUTURE
|
||||||
|
public int? categorieId { get; set; }
|
||||||
public string latitude { get; set; }
|
public string latitude { get; set; }
|
||||||
public string longitude { get; set; }
|
public string longitude { get; set; }
|
||||||
|
|
||||||
@ -36,6 +37,7 @@ namespace Manager.Interfaces.DTO
|
|||||||
|
|
||||||
public class CategorieDTO
|
public class CategorieDTO
|
||||||
{
|
{
|
||||||
|
public int? id { get; set; }
|
||||||
public List<TranslationDTO> label { get; set; }
|
public List<TranslationDTO> label { get; set; }
|
||||||
public string icon { get; set; } // icon material
|
public string icon { get; set; } // icon material
|
||||||
public string iconResourceId { get; set; } // icon point geo
|
public string iconResourceId { get; set; } // icon point geo
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user