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