using System.Collections.Generic; namespace BuddyFinance.Integration.Models.ManageCash { public class ProfileFundsModel { public List Withdrawals { get; set; } public List Diposits { get; set; } } }