Files
Microsoft.SelfService.Porta…/Dto/BaseDto.cs
2026-04-15 15:02:32 +02:00

15 lines
412 B
C#

using Microsoft.SelfService.Portal.Core.API.Extensions.Dataannotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel;
namespace Microsoft.SelfService.Portal.Core.API.Dto
{
public class BaseDto
{
[Column(Order = 1)]
[DefaultValueSql("NEWID()")]
//[DatabaseGenerated(DatabaseGeneratedOption.None)]
public Guid Id { get; set; }
}
}