Files
pgsql-jellyfin/MediaBrowser.Model/LiveTv/DayPattern.cs
T

16 lines
301 B
C#

// <copyright file="DayPattern.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
#pragma warning disable CS1591
namespace MediaBrowser.Model.LiveTv
{
public enum DayPattern
{
Daily,
Weekdays,
Weekends
}
}