PlayDto.cs 455 B

1234567891011121314151617
  1. using System;
  2. using Abp.Application.Services.Dto;
  3. namespace WeOnlineApp.BaseSystem.Query.Dto
  4. {
  5. public class PlayDto : EntityDto<string>
  6. {
  7. public string Name { get; set; }
  8. public string CampName { get; set; }
  9. public bool IsPublic { get; set; }
  10. public string PackageName { get; set; }
  11. public decimal MaxTrainingMinute { get; set; }
  12. public int SubjectPoint { get; set; }
  13. public DateTime? EndDate { get; set; }
  14. }
  15. }