jellyfin/MediaBrowser.Model/Entities/IHasShares.cs

15 lines
306 B
C#
Raw Normal View History

2024-03-26 23:45:14 +01:00
using System.Collections.Generic;
2024-03-26 15:29:48 +01:00
namespace MediaBrowser.Model.Entities;
2023-03-10 17:46:59 +01:00
/// <summary>
/// Interface for access to shares.
/// </summary>
public interface IHasShares
{
/// <summary>
/// Gets or sets the shares.
/// </summary>
2024-04-01 19:59:48 +02:00
IReadOnlyList<PlaylistUserPermissions> Shares { get; set; }
2023-03-10 17:46:59 +01:00
}