mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 06:53:07 +03:00
Add GPL modules
This commit is contained in:
15
MediaBrowser.Controller/Entities/Share.cs
Normal file
15
MediaBrowser.Controller/Entities/Share.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Controller.Entities
|
||||
{
|
||||
public interface IHasShares
|
||||
{
|
||||
Share[] Shares { get; set; }
|
||||
}
|
||||
|
||||
public class Share
|
||||
{
|
||||
public string UserId { get; set; }
|
||||
public bool CanEdit { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user