Files
Backend-Api/AccountManagement.Application.Contracts/SubAccount/CreateSubAccount.cs
2025-05-30 18:03:47 +03:30

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