16 lines
440 B
C#
16 lines
440 B
C#
namespace BLAIzor.Models.Editor
|
|
{
|
|
public class UploadedFilesModel
|
|
{
|
|
public List<UploadedImage> Images { get; set; } = new();
|
|
public List<string> Videos { get; set; } = new();
|
|
public List<string> Audio { get; set; } = new();
|
|
}
|
|
|
|
public class UploadedImage
|
|
{
|
|
public string OriginalUrl { get; set; } = string.Empty;
|
|
public string ThumbnailUrl { get; set; } = string.Empty;
|
|
}
|
|
}
|