ChatDto.cs 183 B

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