aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasShares.cs
blob: e6fa27703b736481bd657eebb6940d7d6a58283f (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; }
    }
}