From 674ca83ba9243a9e95a7568c797668dab6aee26a Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 10:35:25 -0300 Subject: feat: upload files --- .../ViewModels/Drawer/LogSistemaAntigoViewModel.cs | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Gestor.Application/ViewModels/Drawer/LogSistemaAntigoViewModel.cs (limited to 'Gestor.Application/ViewModels/Drawer/LogSistemaAntigoViewModel.cs') diff --git a/Gestor.Application/ViewModels/Drawer/LogSistemaAntigoViewModel.cs b/Gestor.Application/ViewModels/Drawer/LogSistemaAntigoViewModel.cs new file mode 100644 index 0000000..5c97aca --- /dev/null +++ b/Gestor.Application/ViewModels/Drawer/LogSistemaAntigoViewModel.cs @@ -0,0 +1,42 @@ +using Gestor.Application.ViewModels.Generic; +using System; + +namespace Gestor.Application.ViewModels.Drawer +{ + public class LogSistemaAntigoViewModel : BaseViewModel + { + private string _descricao; + + private string _log; + + public string Descricao + { + get + { + return this._descricao; + } + set + { + this._descricao = value; + base.OnPropertyChanged("Descricao"); + } + } + + public string Log + { + get + { + return this._log; + } + set + { + this._log = value; + base.OnPropertyChanged("Log"); + } + } + + public LogSistemaAntigoViewModel() + { + } + } +} \ No newline at end of file -- cgit v1.2.3