ENEI2019-Public/api/Models/User.cs

15 lines
321 B
C#
Raw Normal View History

2018-12-12 15:17:08 +00:00
using System;
using Microsoft.AspNetCore.Identity;
using System.Collections.Generic;
namespace api.Models
{
public class User: IdentityUser<int>
{
2019-02-23 23:06:56 +00:00
public string QRcode{get;set;}
2018-12-12 15:17:08 +00:00
public ICollection<UserRole> UserRoles{get;set;}
public ICollection<Photo> Photos {get;set;}
}
}