aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/IHasShares.cs
blob: b34d1a037600e3fc1075156b8ab4fe4eec4103f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace MediaBrowser.Model.Entities;

/// <summary>
/// Interface for access to shares.
/// </summary>
public interface IHasShares
{
    /// <summary>
    /// Gets or sets the shares.
    /// </summary>
    Share[] Shares { get; set; }
}