Implemented models

This commit is contained in:
2026-08-15 15:06:08 +02:00
parent cd7eb15cc4
commit a5689dd8fc
37 changed files with 729 additions and 12 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace PostFundManagement.Domain.Models;
public class User
{
public Guid Id { get; set; }
public DateTime LastLoginAt { get; set; }
public string? Email { get; set; }
public ActivityStatus Status { get; set; }
}