From eec9e0482525c400e9dc7cb17bc000434adba105 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 13 Feb 2014 00:11:54 -0500 Subject: take photos into the core --- MediaBrowser.Controller/Entities/Photo.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 MediaBrowser.Controller/Entities/Photo.cs (limited to 'MediaBrowser.Controller/Entities/Photo.cs') diff --git a/MediaBrowser.Controller/Entities/Photo.cs b/MediaBrowser.Controller/Entities/Photo.cs new file mode 100644 index 0000000000..96995c315b --- /dev/null +++ b/MediaBrowser.Controller/Entities/Photo.cs @@ -0,0 +1,24 @@ +using System.Collections.Generic; + +namespace MediaBrowser.Controller.Entities +{ + public class Photo : BaseItem, IHasTags, IHasTaglines + { + public List Tags { get; set; } + public List Taglines { get; set; } + + public Photo() + { + Tags = new List(); + Taglines = new List(); + } + + public override string MediaType + { + get + { + return Model.Entities.MediaType.Photo; + } + } + } +} -- cgit v1.2.3