Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Entities/Share.cs

14 lines
219 B
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Controller.Entities
2018-12-27 18:27:57 -05:00
{
public class Share
{
public string UserId { get; set; }
2020-06-16 09:43:52 +12:00
2018-12-27 18:27:57 -05:00
public bool CanEdit { get; set; }
}
}