15 lines
390 B
C#
15 lines
390 B
C#
using System;
|
|
|
|
namespace BackgroundBuilder.Models
|
|
{
|
|
public class Contato
|
|
{
|
|
public string Ramal { get; set; } = string.Empty;
|
|
public string? Nome { get; set; } = string.Empty;
|
|
public string? Email { get; set; }
|
|
public string? Area { get; set; }
|
|
public DateTime? Aniversario { get; set; }
|
|
public bool IsComando { get; set; }
|
|
}
|
|
}
|