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

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