9 lines
216 B
C#
9 lines
216 B
C#
namespace AccountManagement.Application.Contracts.SubAccount
|
|
{
|
|
public class AssignSubAccountRole
|
|
{
|
|
public long SubAccountRoleId { get; set; }
|
|
public long SubAccountId { get; set; }
|
|
}
|
|
}
|