refactor(ResultView): move to Views directory

This commit is contained in:
2026-01-12 10:34:27 +01:00
parent 88c6e6d214
commit 284ced6059
4 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,36 @@
using ReC.Domain.Entities;
using System.ComponentModel.DataAnnotations.Schema;
namespace ReC.Domain.Views;
[Table("VWREC_RESULT", Schema = "dbo")]
public class ResultView
{
public long Id { get; set; }
public long? ActionId { get; set; }
public RecActionView? Action { get; set; }
public long? ProfileId { get; set; }
public ProfileView? Profile { get; set; }
public string? ProfileName { get; set; }
public short? StatusCode { get; set; }
public string? StatusName { get; set; }
public string? Header { get; set; }
public string? Body { get; set; }
public string? AddedWho { get; set; }
public DateTime? AddedWhen { get; set; }
public string? ChangedWho { get; set; }
public DateTime? ChangedWhen { get; set; }
}