| 1234567891011121314151617 |
- using System;
- using Abp.Application.Services.Dto;
- namespace WeOnlineApp.BaseSystem.Query.Dto
- {
- public class PlayDto : EntityDto<string>
- {
- public string Name { get; set; }
- public string CampName { get; set; }
- public bool IsPublic { get; set; }
- public string PackageName { get; set; }
- public decimal MaxTrainingMinute { get; set; }
- public int SubjectPoint { get; set; }
- public DateTime? EndDate { get; set; }
- }
- }
|