Update project structure

This commit is contained in:
2022-12-06 12:30:45 +01:00
parent ffd4b5ed50
commit f8fa3208b9
13 changed files with 0 additions and 0 deletions

16
WebAPI/Models/User.cs Normal file
View File

@@ -0,0 +1,16 @@
using System.ComponentModel.DataAnnotations;
namespace WebAPI.Models
{
public class User
{
#region Properties
[Key]
public Guid Id { get; set; }
public string? Email { get; set; }
[StringLength(50)]
public string? UserName { get; set; }
public DateTime CreatedAt { get; set; }
#endregion
}
}