fix issues

This commit is contained in:
Thomas Fransolet 2024-02-28 16:47:39 +01:00
parent aa25e0d4a0
commit 2421ce6fa5
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ namespace Manager.Interfaces.DTO
public class GeoPointDTO public class GeoPointDTO
{ {
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 List<ContentGeoPoint> contents { get; set; } public List<ContentGeoPoint> contents { get; set; }

View File

@ -19,7 +19,7 @@ namespace Manager.Interfaces.DTO
public List<TranslationAndResourceDTO> label { get; set; } public List<TranslationAndResourceDTO> label { get; set; }
public List<ResponseDTO> responses { get; set; } public List<ResponseDTO> responses { get; set; }
public string imageBackgroundResourceId { get; set; } // question image background public string imageBackgroundResourceId { get; set; } // question image background
public ResourceType imageBackgroundResourceType { get; set; } public ResourceType? imageBackgroundResourceType { get; set; }
public string imageBackgroundResourceUrl { get; set; } // url to firebase storage or on internet public string imageBackgroundResourceUrl { get; set; } // url to firebase storage or on internet
public int order { get; set; } // Order to show public int order { get; set; } // Order to show
} }