aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasShares.cs
blob: dca5af873f8e599c89682e5732ee8d1de8c4739e (plain)
1
2
3
4
5
6
7
8
9
10
11
#nullable disable

#pragma warning disable CA1819, CS1591

namespace MediaBrowser.Controller.Entities
{
    public interface IHasShares
    {
        Share[] Shares { get; set; }
    }
}