mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-04-03 07:43:51 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
26 lines
636 B
C#
26 lines
636 B
C#
using System;
|
|
|
|
namespace Kavita.Models.DTOs.MediaErrors;
|
|
|
|
public sealed record 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; }
|
|
}
|