jellyfin/MediaBrowser.Model/Entities/IHasShares.cs

15 lines
291 B
C#
Raw Normal View History

2024-03-26 15:29:48 +01:00
using System.Collections.Generic;
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 15:29:48 +01:00
IReadOnlyList<Share> Shares { get; set; }
2023-03-10 17:46:59 +01:00
}