28 lines
647 B
C#
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;
|
|
}
|