using System.Collections.Generic; namespace MediaBrowser.Model.Entities; /// /// Interface for access to shares. /// public interface IHasShares { /// /// Gets or sets the shares. /// IReadOnlyList Shares { get; set; } }