iPackage/iPackage.Core.Web/Models/Settings/RootAdmin.cs

18 lines
468 B
C#
Raw Permalink Normal View History

2021-01-15 18:08:14 +03:30
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; }
}
}