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

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