Files
YunTongJackYunTask/Reportapi/MyCode.Project.Domain/Message/Response/Lxm/IdTimeResp.cs
2025-07-04 09:50:02 +08:00

33 lines
570 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.Lxm
{
/// <summary>
/// Id和时间
/// </summary>
public class IdTimeResp
{
/// <summary>
/// Id
/// </summary>
public Guid Id
{
get;
set;
}
/// <summary>
/// 修改时间
/// </summary>
public DateTime? EditTime
{
get;
set;
}
}
}