using Microsoft.AspNetCore.Mvc; using System; using System.ComponentModel.DataAnnotations; namespace Infrastructure.Application { public class BaseEntityRequest : BaseRequest { public BaseEntityRequest() { this.Id = Guid.NewGuid(); } [HiddenInput(DisplayValue = false)] [ScaffoldColumn(true)] public Guid Id { get; set; } } }