21 lines
697 B
C#
21 lines
697 B
C#
using _0_Framework.Application;
|
|
using System.Collections.Generic;
|
|
|
|
namespace AccountManagement.Application.Contracts.SubAccount
|
|
{
|
|
public class CreateSubAccount
|
|
{
|
|
public long AccountId { get; set; }
|
|
public string Password { get; set; }
|
|
public long SubAccountRoleId { get; set; }
|
|
public IsActive IsActive { get; set; }
|
|
public string FName { get; set; }
|
|
public string LName { get; set; }
|
|
public string NationalCode { get; set; }
|
|
public string PhoneNumber { get; set; }
|
|
public string Username { get; set; }
|
|
public string ProfilePhoto { get; set; }
|
|
//public List<long> WorkshopIds { get; set; }
|
|
}
|
|
}
|