todo-app-backend/TodoApp/API/Models/User.cs
JakubWalkowiak bfb86df000 initial app
2022-02-08 22:12:18 +01:00

12 lines
255 B
C#

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; }
}
}