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