2
0

Share.cs 287 B

123456789101112131415
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. public interface IHasShares
  5. {
  6. Share[] Shares { get; set; }
  7. }
  8. public class Share
  9. {
  10. public string UserId { get; set; }
  11. public bool CanEdit { get; set; }
  12. }
  13. }