using Newtonsoft.Json.Linq;
using System.Collections.Generic;
public static void Main()
TopupDTO temp = new TopupDTO();
JObject ob = JObject.FromObject(temp);
var count = new List<int>{1, 2, 3, 4};
foreach (var item in count)
public string TopupID { get; set; }
public int TelcoID { get; set; }
public bool IsUsed { get; set; }