using System.Collections.Generic;
public static void Main()
Console.WriteLine("Hello");
PaypalCSVModel m1 = new PaypalCSVModel("Completed","12345","Credit");
PaypalCSVModel m2 = new PaypalCSVModel("Completed","12345","Memo");
PaypalCSVModel m3 = new PaypalCSVModel("Completed","12346","Credit");
PaypalCSVModel m4 = new PaypalCSVModel("Completed","12347","Credit");
PaypalCSVModel m5 = new PaypalCSVModel("Completed","12348","Credit");
List<PaypalCSVModel> model = new List<PaypalCSVModel>();
Console.WriteLine("[" + m.Status + "] " +m.TransactionID);
public class PaypalCSVModel
public string Status { get; set; }
public string TransactionID { get; set; }
public string BalanceImpact {get; set; }
public PaypalCSVModel(string s,string t,string b){