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