13 lines
No EOL
319 B
C#
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();
|
|
}
|
|
} |