18 lines
468 B
C#
18 lines
468 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace iPackage.Core.Web.Models.Settings
|
|
{
|
|
public class RootAdmin
|
|
{
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public string Email { get; set; }
|
|
public string RoleName { get; set; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public string Phone { get; set; }
|
|
}
|
|
}
|