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; } } }