jellyfin/MediaBrowser.Common.Implementations/Security/RegRecord.cs
2015-10-16 10:29:02 -04:00

12 lines
282 B
C#

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; }
}
}