15 lines
412 B
C#
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; }
|
|
}
|
|
}
|