aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/MBRegistrationRecord.cs
blob: 4132585a0e91748a79bf9877f5154d5ac9bcff32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace MediaBrowser.Model.Entities
{
    public class MBRegistrationRecord
    {
        public DateTime ExpirationDate { get; set; }
        public bool IsRegistered { get; set; }
        public bool RegChecked { get; set; }
        public bool RegError { get; set; }
        public bool TrialVersion { get; set; }
        public bool IsValid { get; set; }
    }
}