aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/Share.cs
blob: 7e4ec18307389bc76eacf19f85b213a82a944883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#nullable disable

#pragma warning disable CS1591

namespace MediaBrowser.Controller.Entities
{
    public interface IHasShares
    {
        Share[] Shares { get; set; }
    }

    public class Share
    {
        public string UserId { get; set; }

        public bool CanEdit { get; set; }
    }
}