aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/Security/RegRecord.cs
blob: ece70b77261362a691f12c2e4223b15b5f1e4b0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace MediaBrowser.Common.Implementations.Security
{
    class RegRecord
    {
        public string featId { get; set; }
        public bool registered { get; set; }
        public DateTime expDate { get; set; }
        public string key { get; set; }
    }
}