11 lines
276 B
C#
11 lines
276 B
C#
namespace active_allocator.Models.FireFlyTransactions;
|
|
|
|
// Root myDeserializedClass = JsonConvert.DeserializeObject<Root>(myJsonResponse);
|
|
|
|
public class Root
|
|
{
|
|
public List<Datum> data { get; set; }
|
|
public Meta meta { get; set; }
|
|
public Links links { get; set; }
|
|
}
|