aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/Share.cs
blob: e194f6238842cc0f266d95cb2a22cb8c1e06b3d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System.Collections.Generic;

namespace MediaBrowser.Controller.Entities
{
    public interface IHasShares
    {
        List<Share> Shares { get; set; }
    }

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