diff options
Diffstat (limited to 'MediaBrowser.Controller/Entities/Share.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Share.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/MediaBrowser.Controller/Entities/Share.cs b/MediaBrowser.Controller/Entities/Share.cs index c17789ccc..64f446eef 100644 --- a/MediaBrowser.Controller/Entities/Share.cs +++ b/MediaBrowser.Controller/Entities/Share.cs @@ -1,13 +1,13 @@ +#nullable disable + +#pragma warning disable CS1591 + namespace MediaBrowser.Controller.Entities { - public interface IHasShares - { - Share[] Shares { get; set; } - } - public class Share { public string UserId { get; set; } + public bool CanEdit { get; set; } } } |
