mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
11 lines
189 B
C#
11 lines
189 B
C#
#nullable disable
|
|
|
|
#pragma warning disable CA1819, CS1591
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
public interface IHasShares
|
|
{
|
|
Share[] Shares { get; set; }
|
|
}
|
|
} |