//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace BuddyFinance.Model { using System; public partial class ProfileTransactions_Result { public int Id { get; set; } public int ProfileId { get; set; } public System.DateTime TransactionDate { get; set; } public string Description { get; set; } public string Reference { get; set; } public string Type { get; set; } public string StatusType { get; set; } public double Amount { get; set; } public string FeeTypeDescription { get; set; } public double FeeAmount { get; set; } } }