mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
Refactor domain project structure and remove Domain.Validation project
This commit is contained in:
11
src/Core/Domain/Entities/UserCredential.cs
Normal file
11
src/Core/Domain/Entities/UserCredential.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace Domain.Core.Entities;
|
||||
|
||||
public class UserCredential
|
||||
{
|
||||
public Guid UserCredentialId { get; set; }
|
||||
public Guid UserAccountId { get; set; }
|
||||
public DateTime CreatedAt { get; set; }
|
||||
public DateTime Expiry { get; set; }
|
||||
public string Hash { get; set; } = string.Empty;
|
||||
public byte[]? Timer { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user