Files
PowderCoatingLogix/src/PowderCoating.Application/DTOs/BugReport/BugReportAttachmentDto.cs
T
2026-04-23 21:38:24 -04:00

12 lines
371 B
C#

namespace PowderCoating.Application.DTOs.BugReport;
public class BugReportAttachmentDto
{
public int Id { get; set; }
public int BugReportId { get; set; }
public string FileName { get; set; } = string.Empty;
public string ContentType { get; set; } = string.Empty;
public long FileSizeBytes { get; set; }
public DateTime CreatedAt { get; set; }
}