jellyfin/MediaBrowser.Controller/Entities/Share.cs

15 lines
250 B
C#
Raw Normal View History

namespace MediaBrowser.Controller.Entities
2018-12-28 00:27:57 +01:00
{
public interface IHasShares
{
Share[] Shares { get; set; }
}
public class Share
{
public string UserId { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public bool CanEdit { get; set; }
}
}