11 lines
181 B
C#
11 lines
181 B
C#
|
#nullable disable
|
|||
|
|
|||
|
#pragma warning disable CS1591
|
|||
|
|
|||
|
namespace MediaBrowser.Controller.Entities
|
|||
|
{
|
|||
|
public interface IHasShares
|
|||
|
{
|
|||
|
Share[] Shares { get; set; }
|
|||
|
}
|
|||
|
}
|