server-master/srcs/PhoenixLib.DAL.Abstractions/BaseUuidDto.cs
2026-02-10 18:21:30 +01:00

13 lines
No EOL
319 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace PhoenixLib.DAL
{
public class BaseUuidDto : IUuidDto
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public Guid Id { get; set; } = Guid.NewGuid();
}
}