using System.Collections.Generic; using AccountManagement.Application.Contracts.Account; namespace AccountManagement.Application.Contracts.Task; public class EditTaskPartialViewModel { public EditTask EditTask { get; set; } public List AccountList { get; set; } public long Id { get; set; } }