aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Devices/DeviceOptions.cs
diff options
context:
space:
mode:
authorVasily <JustAMan@users.noreply.github.com>2020-05-15 22:04:23 +0300
committerGitHub <noreply@github.com>2020-05-15 22:04:23 +0300
commitd21feb2b188b0b317f0d12ff2aea9f48f4a4c2e0 (patch)
treef4cc08dd0f8f19dbd003a4814fb496b061d2ec32 /MediaBrowser.Model/Devices/DeviceOptions.cs
parent18953d95e6692290bf56547d4c9614790687654c (diff)
parent79dee27299bda60f67e98eda8c309b1f25e0893b (diff)
Merge pull request #2970 from barronpm/activitydb-efcore
Migrate Activity Database to Entity Framework Core
Diffstat (limited to 'MediaBrowser.Model/Devices/DeviceOptions.cs')
-rw-r--r--MediaBrowser.Model/Devices/DeviceOptions.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Devices/DeviceOptions.cs b/MediaBrowser.Model/Devices/DeviceOptions.cs
new file mode 100644
index 000000000..8b77fd7fc
--- /dev/null
+++ b/MediaBrowser.Model/Devices/DeviceOptions.cs
@@ -0,0 +1,9 @@
+#pragma warning disable CS1591
+
+namespace MediaBrowser.Model.Devices
+{
+ public class DeviceOptions
+ {
+ public string CustomName { get; set; }
+ }
+}