Files
mmorales.photo/back/DTO/PhotoFormModel.cs
2025-08-07 19:19:30 +02:00

13 lines
348 B
C#

namespace back.DTO;
public class PhotoFormModel
{
public required string Title { get; set; }
public string? Description { 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; }
}