Files
2026-06-24 03:01:00 +08:00

10 lines
339 B
C#

public class AlertFeedback
{
public Guid Id { get; set; }
public Guid AlertId { get; set; }
public ClinicalAlert Alert { get; set; } = null!;
public Guid UserId { get; set; }
public AlertFeedbackType FeedbackType { get; set; }
public string? Comment { get; set; }
public DateTimeOffset CreatedAt { get; set; }
}