Added a SeriesInfo DTO

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-09-08 10:51:40 -04:00
parent 4e37f03b12
commit 2ca4e8b1c2
3 changed files with 29 additions and 7 deletions

View File

@@ -0,0 +1,18 @@
using ProtoBuf;
using System;
namespace MediaBrowser.Model.DTO
{
[ProtoContract]
public class SeriesInfo
{
[ProtoMember(1)]
public string Status { get; set; }
[ProtoMember(2)]
public string AirTime { get; set; }
[ProtoMember(3)]
public DayOfWeek[] AirDays { get; set; }
}
}