using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BuddyFinance.MEF.Concepts { public class GetCustomerCreditProfileResult { public GetCustomerCreditProfileResult() { Accounts = new List(); Judgements = new List(); } public int CreditScore { get; set; } public BasicCustomerInformation BasicCustomerInformation { get; set; } public List Accounts { get; set; } public List Judgements { get; set; } public int ErrorCode { get; set; } public string Message { get; set; } } }