using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_WeChatApplet.Commons.Dto.ClientSide
{
///
/// 获取个人目标
///
public class CetPersonalGoalDto
{
///
/// 目标数量
///
public int GoalAmount { get; set; } = 0;
///
/// 完成数量
///
public int CompletedCount { get; set; } = 0;
///
/// 完成率
///
public string CompletionRate { get; set; }
///
/// 上一次跳绳个数
///
public int LastCount { get; set; } = 0;
///
/// 累计次数
///
public int AccumulatedCount { get; set; } = 0;
///
/// 连续完成
///
public int ContinuousDays { get; set; }
}
}