ENEI2019-Public/api/Models/User.cs

15 lines
321 B
C#
Executable File

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