using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CoreCms.Net.Model.Entities;
namespace CoreCms.Net.Model.FromBody
{
///
/// 保存累计签到规则
///
public class FMDoSaveCumulativeCheckInRules
{
public List entity { set; get; }
}
///
/// 保存连续签到规则
///
public class FMDoSaveContinuousCheckInRules
{
public List entity { set; get; }
}
///
/// 前端用户签到提交
///
public class FMDoUserCheckIn
{
public DateTime date { set; get; }
}
///
/// 前端获取用户签到数据
///
public class FMGetUserCheckInByMonth
{
public int year { set; get; }
public int month { set; get; }
}
}