10 lines
339 B
C#
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; }
|
|
} |