jellyfin/MediaBrowser.Model/Entities/IHasShares.cs
2024-03-26 15:49:18 +01:00

15 lines
291 B
C#

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<Share> Shares { get; set; }
}