//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Model.Entities;
using global::System.Collections.Generic;
///
/// Interface for access to shares.
///
public interface IHasShares
{
///
/// Gets or sets the shares.
///
IReadOnlyList Shares { get; set; }
}