using System; using Abp.Application.Services.Dto; namespace WeOnlineApp.BaseSystem.Query.Dto { public class PlayDto : EntityDto { 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; } } }