namespace MediaBrowser.Model.Entities; /// /// Interface for access to shares. /// public interface IHasShares { /// /// Gets or sets the shares. /// Share[] Shares { get; set; } }