more tests for user rep

This commit is contained in:
Artemy
2025-06-17 17:37:10 +07:00
parent b4b6d33432
commit 70e46e7648
6 changed files with 204 additions and 19 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
using System.ComponentModel.DataAnnotations;
namespace Govor.Core.Models;
public class User
@@ -7,6 +9,6 @@ public class User
public string Description {get; set;}
public string HashPassword {get; set;}
public Guid IconId {get; set;}
public DateTime CreatedOn {get; set;}
public DateOnly CreatedOn {get; set;}
public DateTime WasOnline {get; set;}
}