You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
540 B
25 lines
540 B
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;
|
|
}
|
|
}
|
|
}
|
|
}
|