diff --git a/src/ReC.Domain/Views/ProfileView.cs b/src/ReC.Domain/Views/ProfileView.cs index 4e94052..dc2710b 100644 --- a/src/ReC.Domain/Views/ProfileView.cs +++ b/src/ReC.Domain/Views/ProfileView.cs @@ -6,6 +6,8 @@ namespace ReC.Domain.Views; [Table("VWREC_PROFILE", Schema = "dbo")] public record ProfileView { + public virtual IEnumerable? Actions { get; init; } + public long Id { get; init; } public bool Active { get; init; }