UpdateLogDto.cs 186 B

123456789
  1. using Abp.Application.Services.Dto;
  2. namespace WeOnlineApp.TrainingCampPlay.Dto
  3. {
  4. public class UpdateLogDto : EntityDto<int>
  5. {
  6. public string Text { get; set; }
  7. }
  8. }