11 lines
245 B
C#
11 lines
245 B
C#
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace API.Models;
|
||
|
|
||
|
public class User
|
||
|
{
|
||
|
public int Id { get; set; }
|
||
|
public string? Email { get; set; }
|
||
|
public string? Username { get; set; }
|
||
|
public string? Password { get; set; }
|
||
|
}
|