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

12 lines
274 B
C#
Raw Normal View History

2014-05-08 17:23:24 -04:00
using System;
2016-11-04 04:43:59 -04:00
namespace Emby.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
}
}