16 lines
367 B
C#
16 lines
367 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace WebAPI.Models;
|
|
|
|
public class User
|
|
{
|
|
#region Properties
|
|
[Key]
|
|
public Guid Id { get; init; }
|
|
[StringLength(50)]
|
|
public string? Email { get; init; }
|
|
[StringLength(50)]
|
|
public string? UserName { get; init; }
|
|
public DateTime CreatedAt { get; init; }
|
|
#endregion
|
|
} |