18 lines
623 B
C#
18 lines
623 B
C#
namespace Socialize.Api.Modules.Feedback.Data;
|
|
|
|
public class FeedbackActivityEntry
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid FeedbackReportId { get; set; }
|
|
public Guid ActorUserId { get; set; }
|
|
public string ActorDisplayName { get; set; } = string.Empty;
|
|
public string ActorEmail { get; set; } = string.Empty;
|
|
public string ActivityType { get; set; } = string.Empty;
|
|
public string? FromValue { get; set; }
|
|
public string? ToValue { get; set; }
|
|
public string? Note { get; set; }
|
|
public DateTimeOffset CreatedAt { get; set; }
|
|
|
|
public FeedbackReport? FeedbackReport { get; set; }
|
|
}
|