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