blob: fb22b65e838a8c9e16fffea761e2b5c5d52c1193 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
namespace MediaBrowser.Controller.Entities
{
public interface IHasShares
{
Share[] Shares { get; set; }
}
public class Share
{
public string UserId { get; set; }
public bool CanEdit { get; set; }
}
}
|