FavoriteDto.cs 184 B

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