aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/Share.cs
blob: 64f446eef2b846cf97a936dd1794aa27574bb7c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#nullable disable

#pragma warning disable CS1591

namespace MediaBrowser.Controller.Entities
{
    public class Share
    {
        public string UserId { get; set; }

        public bool CanEdit { get; set; }
    }
}