aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Providers/SubtitleProviderInfo.cs
blob: ee25be4b6cfff958c1cf1766c62baf1d1efbecf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#nullable disable
#pragma warning disable CS1591

namespace MediaBrowser.Model.Providers
{
    public class SubtitleProviderInfo
    {
        public string Name { get; set; }
        public string Id { get; set; }
    }
}