back photo + event tags and persons

This commit is contained in:
2025-08-10 20:07:40 +02:00
parent 0cc8bddfa1
commit f61b48fa4b
46 changed files with 1438 additions and 189 deletions

View File

@@ -2,11 +2,13 @@
public class PhotoFormModel
{
public required string UserId { get; set; }
public required string Title { get; set; }
public string? Description { get; set; }
public string? Tags { get; set; }
public string? People { get; set; }
public string[]? Tags { get; set; }
public string[]? People { get; set; }
public IFormFile? Image { get; set; }
public string? Ubicacion { get; set; }
public string? Evento { get; set; }
public bool IsPublic { get; set; }
}