mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
* Removed 4 properties from SiteThemeDto which weren't supposed to be there. * Removed another set of date fields not used on DTOs * Hangfire jobs will now grab a utc date and render that date in user's local timezone. * Scrobble errors are now localized dates. Added simplified chinese language code * Fixed a bunch of newlines in the translation files * Localized compact number and fixed some missing localizations * Fixed remove from on deck key issue * Scrobble events is now localized * Scrobble events is now localized * Removed some duplicate fields from chapter
24 lines
572 B
C#
24 lines
572 B
C#
using System;
|
|
|
|
namespace API.DTOs.MediaErrors;
|
|
|
|
public class MediaErrorDto
|
|
{
|
|
/// <summary>
|
|
/// Format Type (RAR, ZIP, 7Zip, Epub, PDF)
|
|
/// </summary>
|
|
public required string Extension { get; set; }
|
|
/// <summary>
|
|
/// Full Filepath to the file that has some issue
|
|
/// </summary>
|
|
public required string FilePath { get; set; }
|
|
/// <summary>
|
|
/// Developer defined string
|
|
/// </summary>
|
|
public string Comment { get; set; }
|
|
/// <summary>
|
|
/// Exception message
|
|
/// </summary>
|
|
public string Details { get; set; }
|
|
}
|