Files
2023-02-24 10:52:33 -05:00

14 lines
317 B
C#

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; }
}
}