mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-30 12:28:27 +01:00
Added a SeriesInfo DTO
This commit is contained in:
parent
4e37f03b12
commit
2ca4e8b1c2
18
MediaBrowser.Model/DTO/SeriesInfo.cs
Normal file
18
MediaBrowser.Model/DTO/SeriesInfo.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user