2025-07-26 10:05:43 +08:00
|
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
|
using DMS.Application.DTOs;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace DMS.WPF.ViewModels.Items;
|
|
|
|
|
|
|
|
|
|
public partial class VariableHistoryItemViewModel : ObservableObject
|
|
|
|
|
{
|
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
|
|
|
}
|