RoleUpdateInput.cs 313 B

12345678910111213
  1. using System;
  2. using VCommon.VApplication.Dto;
  3. using VCommon.VAutoMapper;
  4. using VCommonCoreExample.Entity;
  5. namespace VCommonCoreExample.AppServices.System.Roles.Dto
  6. {
  7. [AutoMapTo(typeof(Role))]
  8. public class RoleUpdateInput : RoleCreateInput, IEntityDto
  9. {
  10. public Guid Id { get; set; }
  11. }
  12. }