ConexionZonasIn.cs 403B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using WebApplication3.Clases;
  4. #nullable disable
  5. namespace WebApplication3.Models
  6. {
  7. public partial class ConexionZonasIn
  8. {
  9. public uint Id { get; set; }
  10. public uint? IdDatosBalanceIn { get; set; }
  11. public string From { get; set; }
  12. public string To { get; set; }
  13. public string Value { get; set; }
  14. }
  15. }