jellyfin/MediaBrowser.Model/Entities/IHasShares.cs
2023-03-10 19:16:35 +01:00

13 lines
243 B
C#

namespace MediaBrowser.Model.Entities;
/// <summary>
/// Interface for access to shares.
/// </summary>
public interface IHasShares
{
/// <summary>
/// Gets or sets the shares.
/// </summary>
Share[] Shares { get; set; }
}