12 lines
302 B
C#
12 lines
302 B
C#
namespace OpenRHCall.Models
|
|
{
|
|
public class CallRequest
|
|
{
|
|
public string Nome { get; set; }
|
|
public string Email { get; set; }
|
|
public string WhatsApp { get; set; }
|
|
public string TipoSolicitacao { get; set; }
|
|
public string Descricao { get; set; }
|
|
}
|
|
}
|