SelectAnswerDto.cs 189 B

12345678910
  1. using Abp.Application.Services.Dto;
  2. namespace WeOnlineApp.Question.Dto
  3. {
  4. public class SelectAnswerDto : EntityDto<string>
  5. {
  6. public string AnswerNo { get; set; }
  7. }
  8. }