using System.Collections.Generic; using AccountManagement.Application.Contracts.Account; namespace AccountManagement.Application.Contracts.Position; public class AddAccountToPositionPartialViewModel { public List Accounts { get; set; } public long PositionId { get; set; } }