aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Connect/ServerRegistrationResponse.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-08-24 23:54:45 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-08-24 23:54:45 -0400
commit84062573496db136fb011c598fee7b3de129e070 (patch)
treed64cedffd7329b085847e9e0dfd894c3429cb6d5 /MediaBrowser.Server.Implementations/Connect/ServerRegistrationResponse.cs
parentd92936187d2e0a4391dbca6ea182bdb180c3dece (diff)
update translations
Diffstat (limited to 'MediaBrowser.Server.Implementations/Connect/ServerRegistrationResponse.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Connect/ServerRegistrationResponse.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/Connect/ServerRegistrationResponse.cs b/MediaBrowser.Server.Implementations/Connect/ServerRegistrationResponse.cs
new file mode 100644
index 000000000..75c55e26e
--- /dev/null
+++ b/MediaBrowser.Server.Implementations/Connect/ServerRegistrationResponse.cs
@@ -0,0 +1,18 @@
+
+namespace MediaBrowser.Server.Implementations.Connect
+{
+ public class ServerRegistrationResponse
+ {
+ public string Id { get; set; }
+ public string Url { get; set; }
+ public string Name { get; set; }
+ public string AccessKey { get; set; }
+ }
+
+ public class UpdateServerRegistrationResponse
+ {
+ public string Id { get; set; }
+ public string Url { get; set; }
+ public string Name { get; set; }
+ }
+}