diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-08 17:23:24 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-08 17:23:24 -0400 |
| commit | dce9093ba1f67a41c3bb9bca59ec9df77c5bd4bd (patch) | |
| tree | 0f05da22d44941ddd39f4ec61e1b985696c0f183 /MediaBrowser.Common.Implementations/Security | |
| parent | e653b41000c2116c555691f866710f2239553322 (diff) | |
split files into separate classes
Diffstat (limited to 'MediaBrowser.Common.Implementations/Security')
| -rw-r--r-- | MediaBrowser.Common.Implementations/Security/MBRegistration.cs | 7 | ||||
| -rw-r--r-- | MediaBrowser.Common.Implementations/Security/RegRecord.cs | 11 |
2 files changed, 11 insertions, 7 deletions
diff --git a/MediaBrowser.Common.Implementations/Security/MBRegistration.cs b/MediaBrowser.Common.Implementations/Security/MBRegistration.cs index 1d64b5ea1..ca000df19 100644 --- a/MediaBrowser.Common.Implementations/Security/MBRegistration.cs +++ b/MediaBrowser.Common.Implementations/Security/MBRegistration.cs @@ -94,11 +94,4 @@ namespace MediaBrowser.Common.Implementations.Security return new MBRegistrationRecord { IsRegistered = reg.registered, ExpirationDate = reg.expDate, RegChecked = true }; } } - - class RegRecord - { - public string featId { get; set; } - public bool registered { get; set; } - public DateTime expDate { get; set; } - } } diff --git a/MediaBrowser.Common.Implementations/Security/RegRecord.cs b/MediaBrowser.Common.Implementations/Security/RegRecord.cs new file mode 100644 index 000000000..f4e4337bf --- /dev/null +++ b/MediaBrowser.Common.Implementations/Security/RegRecord.cs @@ -0,0 +1,11 @@ +using System; + +namespace MediaBrowser.Common.Implementations.Security +{ + class RegRecord + { + public string featId { get; set; } + public bool registered { get; set; } + public DateTime expDate { get; set; } + } +}
\ No newline at end of file |
