10 lines
299 B
C#
10 lines
299 B
C#
using System.Collections.Generic;
|
|
using AccountManagement.Application.Contracts.Account;
|
|
|
|
namespace AccountManagement.Application.Contracts.Position;
|
|
|
|
public class AddAccountToPositionPartialViewModel
|
|
{
|
|
public List<AccountViewModel> Accounts { get; set; }
|
|
public long PositionId { get; set; }
|
|
} |