SolidifyDto.cs 187 B

123456789
  1. using Abp.Application.Services.Dto;
  2. namespace WePlatform.WeLib.Package.Dto
  3. {
  4. public class SolidifyDto : EntityDto<string>
  5. {
  6. public string NewName { get; set; }
  7. }
  8. }