33 lines
570 B
C#
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;
|
|
}
|
|
}
|
|
}
|