using System; namespace DMS.Application.DTOs; /// /// 用于在UI上显示变量历史记录的DTO。 /// public class VariableHistoryDto { public long Id { get; set; } public int VariableId { get; set; } public string Value { get; set; } public DateTime Timestamp { get; set; } }