aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Providers/RemoteSubtitleInfo.cs
blob: d9f7a852ca6840ce7be6eb04a03a6cb261b2c376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#nullable disable
#pragma warning disable CS1591

using System;

namespace MediaBrowser.Model.Providers
{
    public class RemoteSubtitleInfo
    {
        public string ThreeLetterISOLanguageName { get; set; }
        public string Id { get; set; }
        public string ProviderName { get; set; }
        public string Name { get; set; }
        public string Format { get; set; }
        public string Author { get; set; }
        public string Comment { get; set; }
        public DateTime? DateCreated { get; set; }
        public float? CommunityRating { get; set; }
        public int? DownloadCount { get; set; }
        public bool? IsHashMatch { get; set; }
    }
}