aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/IHasShares.cs
blob: 8c4ba6c4254950674a6a25f1bfe95e349ba7c2bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Collections.Generic;

namespace MediaBrowser.Model.Entities;

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