Files
DMS/DMS.WPF/ItemViewModel/VariableHistoryItem.cs

22 lines
391 B
C#
Raw Normal View History

2025-07-26 10:05:43 +08:00
using CommunityToolkit.Mvvm.ComponentModel;
using DMS.Application.DTOs;
using System;
namespace DMS.WPF.ItemViewModel;
2025-07-26 10:05:43 +08:00
public partial class VariableHistoryItem : ObservableObject
2025-07-26 10:05:43 +08:00
{
2025-07-30 12:09:00 +08:00
public long Id { get; set; }
2025-07-26 10:05:43 +08:00
[ObservableProperty]
private int _variableId;
[ObservableProperty]
private string _value;
[ObservableProperty]
private DateTime _timestamp;
2025-07-28 11:08:56 +08:00
2025-07-26 10:05:43 +08:00
}