2014-05-08 21:23:24 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Common.Implementations.Security
|
|
|
|
|
{
|
|
|
|
|
class RegRecord
|
|
|
|
|
{
|
|
|
|
|
public string featId { get; set; }
|
|
|
|
|
public bool registered { get; set; }
|
|
|
|
|
public DateTime expDate { get; set; }
|
2015-10-16 14:29:02 +00:00
|
|
|
|
public string key { get; set; }
|
2014-05-08 21:23:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|