blob: 5b46cf6d96457cf4c75f9e026ab292c6c779dccb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using System.Runtime.CompilerServices;
namespace Gestor.Model.CalculoWeb
{
public class Usuario
{
public string Email
{
get;
set;
}
public Usuario()
{
}
}
}
|