mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-02 15:50:54 +08:00
11 lines
302 B
C#
11 lines
302 B
C#
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog
|
|
{
|
|
public class AccessLogDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public long Number { get; set; }
|
|
public DateTime? LastModificationTime { get; set; }
|
|
public DateTime CreationTime { get; set; }
|
|
}
|
|
}
|