UserList improvements

This commit is contained in:
2023-02-24 10:52:33 -05:00
parent 4341d5ce92
commit 48ab9a19e8
5 changed files with 82 additions and 14 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
namespace LeafWeb.WebCms.Models
{
public class UserViewModel
{
public string Email { get; set; }
public string Name { get; set; }
public bool Member { get; set; }
public int LeafInputCount { get; set; }
public DateTime FirstSeen { get; set; }
}
}