Jonathan Ouellette 580e90f6a2 initial add
2022-09-27 14:10:30 -07:00

17 lines
394 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Fab2ApprovalSystem.Models
{
public class AllUserModel
{
public string UserName { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public string DisplayName { get; set; }
}
}