From f8b4f4009b3e6b628f6c8a7e46f836c49dfad642 Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Tue, 13 Sep 2016 15:39:44 -0700 Subject: [PATCH] Forgot the Models --- .../Sonarr/SonarrRootFolder.cs | 38 +++++++++++++++++++ PlexRequests.UI/Models/RootFolderModel.cs | 10 +++++ 2 files changed, 48 insertions(+) create mode 100644 PlexRequests.Api.Models/Sonarr/SonarrRootFolder.cs create mode 100644 PlexRequests.UI/Models/RootFolderModel.cs diff --git a/PlexRequests.Api.Models/Sonarr/SonarrRootFolder.cs b/PlexRequests.Api.Models/Sonarr/SonarrRootFolder.cs new file mode 100644 index 000000000..d93986dd6 --- /dev/null +++ b/PlexRequests.Api.Models/Sonarr/SonarrRootFolder.cs @@ -0,0 +1,38 @@ +#region Copyright +// /************************************************************************ +// Copyright (c) 2016 Jamie Rees +// File: SonarrProfile.cs +// Created By: Jamie Rees +// +// Permission is hereby granted, free of charge, to any person obtaining +// a copy of this software and associated documentation files (the +// "Software"), to deal in the Software without restriction, including +// without limitation the rights to use, copy, modify, merge, publish, +// distribute, sublicense, and/or sell copies of the Software, and to +// permit persons to whom the Software is furnished to do so, subject to +// the following conditions: +// +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +// ************************************************************************/ +#endregion + +using System.Collections.Generic; + +namespace PlexRequests.Api.Models.Sonarr +{ + public class SonarrRootFolder + { + public int id { get; set; } + public string path { get; set; } + public long freespace { get; set; } + } +} \ No newline at end of file diff --git a/PlexRequests.UI/Models/RootFolderModel.cs b/PlexRequests.UI/Models/RootFolderModel.cs new file mode 100644 index 000000000..afdee12f6 --- /dev/null +++ b/PlexRequests.UI/Models/RootFolderModel.cs @@ -0,0 +1,10 @@ +namespace PlexRequests.UI.Models +{ + public class RootFolderModel + { + public string Id { get; set; } + public string Path { get; set; } + public long FreeSpace { get; set; } + } +} +