2021-12-09 16:02:39 +01:00
|
|
|
namespace zero.Api.Endpoints.Media;
|
|
|
|
|
|
2021-12-16 00:19:51 +01:00
|
|
|
public class MediaBasic : ZeroIdEntity
|
2021-12-09 16:02:39 +01:00
|
|
|
{
|
2021-12-16 00:19:51 +01:00
|
|
|
public string ParentId { get; set; }
|
2021-12-09 16:02:39 +01:00
|
|
|
|
2021-12-16 00:19:51 +01:00
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsFolder { get; set; }
|
|
|
|
|
|
2022-01-03 13:25:23 +01:00
|
|
|
public string Source { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Preview { get; set; }
|
2021-12-16 00:19:51 +01:00
|
|
|
|
|
|
|
|
public int Children { get; set; }
|
2021-12-16 13:55:09 +01:00
|
|
|
|
|
|
|
|
public long Size { get; set; }
|
2021-12-09 16:02:39 +01:00
|
|
|
}
|