aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/Share.cs
blob: 4ea0b1ea6020c4f757b7c4ef43233fded81a4bc6 (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
    {
        Share[] Shares { get; set; }
    }

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