19 lines
446 B
C#
19 lines
446 B
C#
// <copyright file="IHasShares.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
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; }
|
|
}
|