ENEI2019-Public/api/Models/Team.cs

22 lines
457 B
C#
Raw Normal View History

2018-12-12 16:43:20 +00:00
using System;
using System.Collections.Generic;
namespace api.Models
{
public class Team
{
public int Id{get;set;}
public string Nome{get;set;}
public int Event{get;set;}
2019-02-14 17:25:19 +00:00
public ICollection<User> Users{get;set;}
2018-12-12 16:43:20 +00:00
public int NumMemb{get;set;}
public int VisitedNum{get;set;}
public int Pontos{get;set;}
public ICollection<EventQR> QRs{get;set;}
}
}