blob: 5199dc4f50ce995c176fa1e98730b37431f90358 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
namespace Gestor.Model.Relatorios;
public class Ramo
{
private string _nome;
public long Id { get; set; }
public string Nome
{
get
{
return _nome;
}
set
{
_nome = value?.Trim();
}
}
}
|