2021-05-06 22:39:20 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-08-22 19:56:24 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:01:16 +00:00
|
|
|
namespace MediaBrowser.Controller.Entities
|
2018-12-27 23:27:57 +00:00
|
|
|
{
|
|
|
|
public class Share
|
|
|
|
{
|
|
|
|
public string UserId { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool CanEdit { get; set; }
|
|
|
|
}
|
|
|
|
}
|