aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/Share.cs
blob: c17789ccc66ad65709fccf6fd33b64f458d43e15 (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; }
    }
}