jellyfin/MediaBrowser.Controller/Entities/AdultVideo.cs

20 lines
461 B
C#
Raw Normal View History

2014-11-16 15:46:01 -07:00
using System;
2014-10-01 17:28:16 -07:00
using System.Collections.Generic;
2014-02-11 14:41:01 -07:00
2013-07-16 11:47:05 -07:00
namespace MediaBrowser.Controller.Entities
{
2014-10-01 17:28:16 -07:00
[Obsolete]
2014-10-28 16:17:55 -07:00
public class AdultVideo : Video, IHasProductionLocations, IHasTaglines
2013-07-16 11:47:05 -07:00
{
2014-05-16 12:16:29 -07:00
public List<string> ProductionLocations { get; set; }
2014-02-11 14:41:01 -07:00
public List<string> Taglines { get; set; }
public AdultVideo()
{
Taglines = new List<string>();
2014-05-16 12:16:29 -07:00
ProductionLocations = new List<string>();
2014-02-11 14:41:01 -07:00
}
2013-07-16 11:47:05 -07:00
}
}