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-09-26 20:27:13 +00:00
|
|
|
|
public string key { get; set; }
|
2014-05-08 21:23:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|