using Microsoft.AspNetCore.Mvc.Rendering; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace BuddyFinance.Admin.Areas.Admin.Models { public class ReviewProfileAccountModel { public string ProfileId { get; set; } public int ProfileTypeId { get; set; } public string Action { get; set; } public string Comments { get; set; } public List ActionList { get; set; } public ReviewProfileAccountModel() { ActionList = new List { new SelectListItem{ Value = "Approve", Text = "Approve"}, new SelectListItem{ Value = "Reject", Text = "Reject"}, }; } } public class SuspendProfileAccountViewModel { public string ProfileId { get; set; } public int ProfileTypeId { get; set; } public string Action { get; set; } public string Comments { get; set; } public List ActionList { get; set; } public SuspendProfileAccountViewModel() { ActionList = new List { new SelectListItem{ Value = "Suspend", Text = "Suspend"}, new SelectListItem{ Value = "Unsuspend", Text = "Unsuspend"}, }; } } }