LANCommander/Data/Models/User.cs

12 lines
253 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<Guid>
{
}
}