Files
jellyfin-jellyfin-1/Jellyfin.Api/Models/ExceptionDtos/ExceptionDto.cs

15 lines
337 B
C#
Raw Normal View History

2020-04-21 07:36:22 -06:00
namespace Jellyfin.Api.Models.ExceptionDtos
{
/// <summary>
/// Exception Dto.
/// Used for graceful handling of API exceptions.
/// </summary>
public class ExceptionDto
{
/// <summary>
/// Gets or sets exception message.
/// </summary>
public string Message { get; set; }
}
}