namespace BLAIzor.Models.Editor
{
public class UploadedFilesModel
public List<string> Images { get; set; } = new();
public List<string> Videos { get; set; } = new();
public List<string> Audio { get; set; } = new();
}