summaryrefslogtreecommitdiff
path: root/Decompiler/Gestor.Application.ViewModels.Drawer/LogSistemaAntigoViewModel.cs
blob: 3e52eeae55159e3776215ff68d67afbc3a2f4cef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using Gestor.Application.ViewModels.Generic;

namespace Gestor.Application.ViewModels.Drawer;

public class LogSistemaAntigoViewModel : BaseViewModel
{
	private string _descricao;

	private string _log;

	public string Descricao
	{
		get
		{
			return _descricao;
		}
		set
		{
			_descricao = value;
			OnPropertyChanged("Descricao");
		}
	}

	public string Log
	{
		get
		{
			return _log;
		}
		set
		{
			_log = value;
			OnPropertyChanged("Log");
		}
	}
}