16 lines
549 B
C#
16 lines
549 B
C#
namespace Socialize.Api.Modules.Feedback.Data;
|
|
|
|
public class FeedbackComment
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid FeedbackReportId { get; set; }
|
|
public Guid AuthorUserId { get; set; }
|
|
public string AuthorDisplayName { get; set; } = string.Empty;
|
|
public string AuthorEmail { get; set; } = string.Empty;
|
|
public string AuthorRole { get; set; } = string.Empty;
|
|
public string Body { get; set; } = string.Empty;
|
|
public DateTimeOffset CreatedAt { get; set; }
|
|
|
|
public FeedbackReport? FeedbackReport { get; set; }
|
|
}
|