mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
Standardized property naming in user-related entities to use 'Id' suffix (e.g., UserAccountId). Moved and updated repository interfaces and implementations to the DataAccessLayer.Repositories namespace. Refactored DBSeed seeders to use repository classes and improved structure. Updated .gitignore and project references
15 lines
510 B
C#
15 lines
510 B
C#
namespace DataAccessLayer.Entities;
|
|
|
|
public class UserAccount
|
|
{
|
|
public Guid UserAccountId { get; set; }
|
|
public string Username { get; set; } = string.Empty;
|
|
public string FirstName { get; set; } = string.Empty;
|
|
public string LastName { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime? UpdatedAt { get; set; }
|
|
public DateTime DateOfBirth { get; set; }
|
|
public byte[]? Timer { get; set; }
|
|
}
|