refactor(ProfileView): move to Views directory

This commit is contained in:
2026-01-12 10:36:39 +01:00
parent 284ced6059
commit 03bcfb6fc9
2 changed files with 2 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
using ReC.Domain.Constants; using ReC.Domain.Constants;
using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations.Schema;
namespace ReC.Domain.Entities; namespace ReC.Domain.Views;
[Table("VWREC_PROFILE", Schema = "dbo")] [Table("VWREC_PROFILE", Schema = "dbo")]
public record ProfileView public record ProfileView

View File

@@ -1,5 +1,4 @@
using ReC.Domain.Entities; using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations.Schema;
namespace ReC.Domain.Views; namespace ReC.Domain.Views;