Files
CapMachine/CapMachine.Wpf/Dtos/ActionLogDto.cs
2024-07-28 22:59:11 +08:00

36 lines
719 B
C#

using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.Dtos
{
/// <summary>
///
/// </summary>
public class ActionLogDto : BindableBase
{
/// <summary>
/// 等级
/// </summary>
public int Level { get; set; }
/// <summary>
/// 分类
/// </summary>
public string? Category { get; set; }
/// <summary>
/// 内容
/// </summary>
public string? Content { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreateTime { get; set; }
}
}