jellyfin/MediaBrowser.Common.Implementations/Security/RegRecord.cs
2014-05-08 17:23:24 -04:00

11 lines
242 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; }
}
}