This commit is contained in:
Henry Trumme
2025-05-10 16:35:40 +02:00
parent cca0f6c6a4
commit c385ee0628
13 changed files with 2019 additions and 3 deletions

View File

@@ -12,6 +12,6 @@ namespace WatchLog.Data
public required string Name { get; set; }
[Required]
public required string Password { get; set; } // Important: Save as HASH
public required string PasswordHash { get; set; } // Important: Save as HASH
}
}

View File

@@ -15,7 +15,7 @@ namespace WatchLog.Data
public string? Email { get; set; }
[Required]
public required string Password { get; set; } // Important: Save as HASH
public required string PasswordHash { get; set; } // Important: Save as HASH
// --- Navigation Properties ---