LANCommander/Data/Models/User.cs
2023-01-02 15:44:04 -06:00

11 lines
247 B
C#

using Microsoft.AspNetCore.Identity;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace LANCommander.Data.Models
{
[Table("Users")]
public class User : IdentityUser
{
}
}