You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
639 B
17 lines
639 B
using System; |
|
using System.Collections.Generic; |
|
using System.ComponentModel.DataAnnotations; |
|
using api.Models; |
|
|
|
namespace api.Dtos |
|
{ |
|
public class TeamToReturn |
|
{ |
|
public int Id{get;set;} //id |
|
public int EventId{get;set;} //equipa para o evento ID |
|
public string Nome{get;set;} //Nome da equipa |
|
public UserForListDto Cap{get;set;} //Capitao da equipa |
|
public int NMembros {get;set;} //Numero de Membros na equipa |
|
public int Pontos {get;set;} //Postos da equipa |
|
} |
|
} |