16 lines
464 B
C#

using System;
using System.Collections.Generic;
using System.Data;
using System.Text.Json.Serialization;
namespace AAIntegration.SimmonsBank.API.Entities;
public class EnvelopeHistorical
{
//public int Id { get; set; }
public Envelope Envelope { get; set; }
public int LookBack { get; set; }
public decimal? EnvelopeFunding { get; set; } = null;
public Statistic Credit { get; set; } = null;
public Statistic Debit { get; set; } = null;
}