mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-22 15:00:34 -04:00
26 lines
618 B
C#
26 lines
618 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; }
|
|
|
|
public DateTime CreatedUtc { get; set; }
|
|
}
|