adding bio, coverImage and openToSearch Fields Support for User/UserProfile and Update User ...

This commit is contained in:
2025-12-23 16:34:57 +03:30
parent 23e68de1ef
commit 6a2618a3c4
2 changed files with 153 additions and 2 deletions
+3
View File
@@ -18,5 +18,8 @@ namespace xIdentityModels.Models {
public ICollection<string> Roles { get; set; } = new HashSet<string> ();
public bool? IsEnable { get; set; }
public bool? IsBanned { get; set; }
public string Bio { get; set; }
public string CoverImage { get; set; }
public bool OpenToSearch { get; set; }
}
}