IHasShares.cs 306 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Entities;
  3. /// <summary>
  4. /// Interface for access to shares.
  5. /// </summary>
  6. public interface IHasShares
  7. {
  8. /// <summary>
  9. /// Gets or sets the shares.
  10. /// </summary>
  11. IReadOnlyList<PlaylistUserPermissions> Shares { get; set; }
  12. }