using System; using Microsoft.AspNetCore.Identity; using System.Collections.Generic; namespace api.Models { public class User: IdentityUser { public string QRcode{get;set;} public ICollection UserRoles{get;set;} public ICollection Photos {get;set;} } }