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