11 lines
247 B
C#
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
|
|
{
|
|
}
|
|
}
|