mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
25 lines
540 B
C#
25 lines
540 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
public class Photo : BaseItem, IHasTags, IHasTaglines
|
|
{
|
|
public List<string> Tags { get; set; }
|
|
public List<string> Taglines { get; set; }
|
|
|
|
public Photo()
|
|
{
|
|
Tags = new List<string>();
|
|
Taglines = new List<string>();
|
|
}
|
|
|
|
public override string MediaType
|
|
{
|
|
get
|
|
{
|
|
return Model.Entities.MediaType.Photo;
|
|
}
|
|
}
|
|
}
|
|
}
|