jellyfin/MediaBrowser.Common.Implementations/Security/RegRecord.cs

11 lines
242 B
C#
Raw Normal View History

2014-05-08 23:23:24 +02: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; }
}
}