namespace Jellyfin.Api.Models.ExceptionDtos { /// /// Exception Dto. /// Used for graceful handling of API exceptions. /// public class ExceptionDto { /// /// Gets or sets exception message. /// public string Message { get; set; } } }