diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2023-03-10 17:46:59 +0100 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2023-03-10 19:16:35 +0100 |
| commit | 76ae599bd3ccfd9808f50dbf5d935aa430783e60 (patch) | |
| tree | 9c0c0f6b72cb665a24cbb3ebce42db6a7abd7829 /MediaBrowser.Controller/Entities | |
| parent | 6351d1022bffb1d0f152175965774eb709e143cb (diff) | |
Fix playlist creation and removal
Diffstat (limited to 'MediaBrowser.Controller/Entities')
| -rw-r--r-- | MediaBrowser.Controller/Entities/IHasShares.cs | 11 | ||||
| -rw-r--r-- | MediaBrowser.Controller/Entities/Share.cs | 13 |
2 files changed, 0 insertions, 24 deletions
diff --git a/MediaBrowser.Controller/Entities/IHasShares.cs b/MediaBrowser.Controller/Entities/IHasShares.cs deleted file mode 100644 index e6fa27703..000000000 --- a/MediaBrowser.Controller/Entities/IHasShares.cs +++ /dev/null @@ -1,11 +0,0 @@ -#nullable disable - -#pragma warning disable CA1819, CS1591 - -namespace MediaBrowser.Controller.Entities -{ - public interface IHasShares - { - Share[] Shares { get; set; } - } -} diff --git a/MediaBrowser.Controller/Entities/Share.cs b/MediaBrowser.Controller/Entities/Share.cs deleted file mode 100644 index 64f446eef..000000000 --- a/MediaBrowser.Controller/Entities/Share.cs +++ /dev/null @@ -1,13 +0,0 @@ -#nullable disable - -#pragma warning disable CS1591 - -namespace MediaBrowser.Controller.Entities -{ - public class Share - { - public string UserId { get; set; } - - public bool CanEdit { get; set; } - } -} |
