feat(Entitäten): IUnique-Schnittstelle, die auf jede Entität angewendet wird.

This commit is contained in:
Developer 02
2024-10-23 10:35:33 +02:00
parent 1df7858423
commit 5dab28d99d
5 changed files with 15 additions and 10 deletions

View File

@@ -1,10 +1,11 @@
using System.ComponentModel.DataAnnotations;
using DigitalData.Core.Abstractions;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WorkFlow.Domain.Entities
{
[Table("TBMWF_CONFIG", Schema = "dbo")]
public class Config
public class Config : IUnique<int>
{
[Key]
[Column("GUID")]