/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
namespace CoreCms.Net.Model.ViewModels.Basics
{
///
/// 剩余时间
///
public class LastTimeDetail
{
///
/// 日
///
public int day { get; set; } = 0;
///
/// 时
///
public int hour { get; set; } = 0;
///
/// 分
///
public int minute { get; set; } = 0;
///
/// 秒
///
public int second { get; set; } = 0;
}
}