study-lib-backend/API/Models/User.cs

14 lines
312 B
C#
Raw Normal View History

2020-12-16 21:41:14 +01:00
using Microsoft.AspNetCore.Identity;
2020-12-21 23:31:53 +01:00
using System.Collections.Generic;
2020-12-20 18:53:24 +01:00
using System.ComponentModel.DataAnnotations.Schema;
2020-12-16 21:41:14 +01:00
namespace StudyLib.API.Models
{
public class User : IdentityUser
2020-12-20 18:53:24 +01:00
{
2020-12-16 21:41:14 +01:00
public string FullName { get; set; }
2020-12-21 23:31:53 +01:00
public ICollection<Group> Groups { get; set; }
2020-12-16 21:41:14 +01:00
}
}