2023-11-02 23:37:10 -05:00
|
|
|
|
using LANCommander.SDK.Enums;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.SDK.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Media : BaseModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid FileId { get; set; }
|
2024-06-20 00:22:03 -05:00
|
|
|
|
public string Name { get; set; }
|
2023-11-02 23:37:10 -05:00
|
|
|
|
public MediaType Type { get; set; }
|
|
|
|
|
|
public string SourceUrl { get; set; }
|
|
|
|
|
|
public string MimeType { get; set; }
|
2024-02-20 17:58:49 -06:00
|
|
|
|
public string Crc32 { get; set; }
|
2026-04-24 02:05:56 -05:00
|
|
|
|
public int SortOrder { get; set; }
|
2023-11-02 23:37:10 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|