blob: 5c97acae0d3eb148ec72958f6fcc4a32321a68f4 (
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
37
38
39
40
41
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()
{
}
}
}
|