Files
WCS/Cowain.Base/ViewModels/SerilogViewModel.cs
2026-03-02 09:08:20 +08:00

28 lines
647 B
C#

using CommunityToolkit.Mvvm.ComponentModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cowain.Base.ViewModels;
public partial class SerilogViewModel : ObservableObject
{
[ObservableProperty]
private int _id;
[ObservableProperty]
private string? _template;
[ObservableProperty]
private string? _message;
[ObservableProperty]
private string? _exception;
[ObservableProperty]
private string? _properties;
[ObservableProperty]
private string? _level;
[ObservableProperty]
private string? _timestamp;
}