diff options
| author | Vasily <JustAMan@users.noreply.github.com> | 2020-05-15 22:04:23 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-15 22:04:23 +0300 |
| commit | d21feb2b188b0b317f0d12ff2aea9f48f4a4c2e0 (patch) | |
| tree | f4cc08dd0f8f19dbd003a4814fb496b061d2ec32 /MediaBrowser.Model/Devices/DeviceOptions.cs | |
| parent | 18953d95e6692290bf56547d4c9614790687654c (diff) | |
| parent | 79dee27299bda60f67e98eda8c309b1f25e0893b (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.cs | 9 |
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; } + } +} |
