Files
CalendarReminder/CalendarReminder.Domain/Entities/User.cs
T
2026-06-05 21:39:38 +02:00

13 lines
368 B
C#

namespace CalendarReminder.Domain.Entities;
public class User
{
public int Id { get; set; }
public string Username { get; set; } = "";
public string Email { get; set; } = "";
public string PasswordHash { get; set; } = "";
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
public ICollection<Reminder> Reminders { get; set; } = [];
}