aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dto/IHasServerId.cs
blob: c754d276c571bc8225e6803cd5c37ac9e8d7e892 (plain)
1
2
3
4
5
6
7
8
9
10
#nullable disable
#pragma warning disable CS1591

namespace MediaBrowser.Model.Dto
{
    public interface IHasServerId
    {
        string ServerId { get; }
    }
}