Files
jellyfin-jellyfin-1/MediaBrowser.Server.Implementations/Security/RegRecord.cs

12 lines
282 B
C#
Raw Normal View History

2014-05-08 17:23:24 -04:00
using System;
2016-10-29 01:40:15 -04:00
namespace MediaBrowser.Server.Implementations.Security
2014-05-08 17:23:24 -04:00
{
class RegRecord
{
public string featId { get; set; }
public bool registered { get; set; }
public DateTime expDate { get; set; }
public string key { get; set; }
2014-05-08 17:23:24 -04:00
}
}