feat(Domain.Entities): Output und OutputReferences Entitäten erstellen

This commit is contained in:
tekh 2025-07-18 09:31:03 +02:00
parent 96c0894a4d
commit 60dc0ad557
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,8 @@
using System.ComponentModel.DataAnnotations.Schema;
namespace DigitalData.DEX.Domain.Entities;
[Table("TBDEX_OUTPUT", Schema = "dbo")]
public class Output
{
}

View File

@ -0,0 +1,8 @@
using System.ComponentModel.DataAnnotations.Schema;
namespace DigitalData.DEX.Domain.Entities;
[Table("TBDEX_OUTPUT_REFERENCES", Schema = "dbo")]
public class OutputReferences
{
}