mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-03 02:57:22 -05:00
13 lines
243 B
C#
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; }
|
|
}
|