Initial commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user