15 lines
550 B
C#
15 lines
550 B
C#
namespace Socialize.Api.Modules.Feedback.Data;
|
|
|
|
public class FeedbackScreenshot
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid FeedbackReportId { get; set; }
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string ContentType { get; set; } = string.Empty;
|
|
public long SizeBytes { get; set; }
|
|
public string BlobContainerName { get; set; } = string.Empty;
|
|
public string BlobName { get; set; } = string.Empty;
|
|
public DateTimeOffset CreatedAt { get; set; }
|
|
public FeedbackReport? FeedbackReport { get; set; }
|
|
}
|