aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/PluginDtos/MBRegistrationRecord.cs
blob: 7f1255f4b6fccd71af762e7258e615b7392d4e5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;

namespace Jellyfin.Api.Models.PluginDtos
{
    /// <summary>
    /// MB Registration Record.
    /// </summary>
    public class MBRegistrationRecord
    {
        /// <summary>
        /// Gets or sets expiration date.
        /// </summary>
        public DateTime ExpirationDate { get; set; }

        /// <summary>
        /// Gets or sets a value indicating whether is registered.
        /// </summary>
        public bool IsRegistered { get; set; }

        /// <summary>
        /// Gets or sets a value indicating whether reg checked.
        /// </summary>
        public bool RegChecked { get; set; }

        /// <summary>
        /// Gets or sets a value indicating whether reg error.
        /// </summary>
        public bool RegError { get; set; }

        /// <summary>
        /// Gets or sets a value indicating whether trial version.
        /// </summary>
        public bool TrialVersion { get; set; }

        /// <summary>
        /// Gets or sets a value indicating whether is valid.
        /// </summary>
        public bool IsValid { get; set; }
    }
}