jellyfin-server/MediaBrowser.Controller/Entities/IHasShares.cs

12 lines
190 B
C#
Raw Normal View History

#nullable disable
2021-07-23 23:36:27 +00:00
#pragma warning disable CA1819, CS1591
namespace MediaBrowser.Controller.Entities
{
public interface IHasShares
{
Share[] Shares { get; set; }
}
2021-12-24 17:28:27 +00:00
}