Files
mixtape/zero.Web/Models/MediaListModel.cs
T

20 lines
353 B
C#
Raw Normal View History

2020-05-31 15:01:28 +02:00
using zero.Core.Entities;
namespace zero.Web.Models
2020-05-15 14:23:47 +02:00
{
public class MediaListModel : ListModel
{
public bool IsFolder { get; set; }
2020-05-31 15:01:28 +02:00
public MediaType Type { get; set; }
2020-05-15 14:23:47 +02:00
public string Name { get; set; }
public string Source { get; set; }
public string ThumbnailSource { get; set; }
2020-05-31 15:01:28 +02:00
public long Size { get; set; }
2020-05-15 14:23:47 +02:00
}
}