22 lines
658 B
C#
22 lines
658 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ConsoleApp3
|
|||
|
{
|
|||
|
public class Participante
|
|||
|
{
|
|||
|
public string Nickname { get; set; }
|
|||
|
public string Nome { get; set; }
|
|||
|
public int Idade { get; set; }
|
|||
|
public string Cpf { get; set; }
|
|||
|
public string Endereco { get; set; }
|
|||
|
public string Estado { get; set; }
|
|||
|
public string Bairro { get; set; }
|
|||
|
public string NomeResponsavel { get; set; }
|
|||
|
public string CpfResponsavel { get; set; }
|
|||
|
public int idadeResponsavel { get; set; }
|
|||
|
}
|
|||
|
}
|