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