mh_jy_safe/APT.BaseData.Domain/ApiModel/BD/TimeModel.cs

14 lines
253 B
C#
Raw Permalink Normal View History

2025-08-25 09:56:57 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace APT.BaseData.Domain.ApiModel.BD
{
public class TimeModel
{
public DateTime Start_time { get; set; }
public DateTime End_time { get; set; }
}
}