2025-07-04 09:50:02 +08:00

31 lines
521 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Request
{
public class TimeRange
{
/// <summary>
/// 开始时间
/// </summary>
public DateTime? Begin
{
get;
set;
}
/// <summary>
/// 结束时间
/// </summary>
public DateTime? End
{
get;
set;
}
}
}