study-lib-backend/API/Models/User.cs
Jakub Walkowiak a27049568b Added groups
2020-12-21 23:31:53 +01:00

14 lines
312 B
C#

using Microsoft.AspNetCore.Identity;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace StudyLib.API.Models
{
public class User : IdentityUser
{
public string FullName { get; set; }
public ICollection<Group> Groups { get; set; }
}
}