using System; using System.Collections.Generic; #nullable disable namespace WebApplication3.Models { public partial class TsRecarga { public uint Id { get; set; } public uint? IdRecarga { get; set; } public string MarcaTiempo { get; set; } public string Valor { get; set; } public string MarcaTiempoEnd { get; set; } public string InfoComplementaria { get; set; } } }