using System; using System.Collections.Generic; namespace Gestor.Model.API; public class Access { public long Id { get; set; } public long CustomerId { get; set; } public long? ProductId { get; set; } public long? AgreementId { get; set; } public long? SchemeId { get; set; } public decimal? Ammount { get; set; } public string Status { get; set; } public IList Control { get; set; } public DateTime CurrentDate { get; set; } }