jellyfin/MediaBrowser.Model/Entities/IHasShares.cs

15 lines
298 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-03-26 23:45:14 +01:00
IReadOnlyList<UserPermissions> Shares { get; set; }
2023-03-10 17:46:59 +01:00
}