using System; using Microsoft.AspNetCore.Identity; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; namespace api.Models { public class User: IdentityUser { public string QRcode{get;set;} public ICollection UserRoles{get;set;} public ICollection logsFebrada{get;set;} public ICollection logsFestarola{get;set;} public ICollection Photos {get;set;} public int drinks{get;set;} public int food{get;set;} [ForeignKey("teamID")] public Team team{get;set;} public string cromos {get;set;} } }