using Microsoft.AspNetCore.Identity; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; namespace TodoApp.API.Models { public class User : IdentityUser { public string FullName { get; set; } } }