aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dto/IHasServerId.cs
blob: 49452d736aed502e9550b68754a0de030d27634e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#nullable disable

namespace MediaBrowser.Model.Dto
{
    /// <summary>
    /// Interface for DTOs that reference the id of the server they originate from.
    /// </summary>
    public interface IHasServerId
    {
        /// <summary>
        /// Gets the server id.
        /// </summary>
        string ServerId { get; }
    }
}