feat(Entity): Erstellt als abstrakte Klasse, um allgemeine Entitätseigenschaften zu behandeln. Implementiert für Output und OutputReferences Entitäten

This commit is contained in:
tekh 2025-07-18 09:33:25 +02:00
parent 60dc0ad557
commit bb97ed5ccd
3 changed files with 7 additions and 2 deletions

View File

@ -0,0 +1,5 @@
namespace DigitalData.DEX.Domain.Entities;
public abstract class Entity
{
}

View File

@ -3,6 +3,6 @@
namespace DigitalData.DEX.Domain.Entities; namespace DigitalData.DEX.Domain.Entities;
[Table("TBDEX_OUTPUT", Schema = "dbo")] [Table("TBDEX_OUTPUT", Schema = "dbo")]
public class Output public class Output : Entity
{ {
} }

View File

@ -3,6 +3,6 @@
namespace DigitalData.DEX.Domain.Entities; namespace DigitalData.DEX.Domain.Entities;
[Table("TBDEX_OUTPUT_REFERENCES", Schema = "dbo")] [Table("TBDEX_OUTPUT_REFERENCES", Schema = "dbo")]
public class OutputReferences public class OutputReferences : Entity
{ {
} }