move classes

This commit is contained in:
Luke Pulverenti
2016-11-04 04:43:59 -04:00
parent 6d250c4050
commit 67ffbed93e
8 changed files with 67 additions and 47 deletions

View File

@@ -0,0 +1,12 @@
using System;
namespace Emby.Server.Implementations.Security
{
class RegRecord
{
public string featId { get; set; }
public bool registered { get; set; }
public DateTime expDate { get; set; }
public string key { get; set; }
}
}