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.
jellyfin/MediaBrowser.Model/DTO/SeriesInfo.cs

19 lines
362 B

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; }
}
}