12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using WebApplication3.Clases;
-
- #nullable disable
-
- namespace WebApplication3.Models
- {
- public partial class ConexionZonasIn
- {
- public uint Id { get; set; }
- public uint? IdDatosBalanceIn { get; set; }
- public string From { get; set; }
- public string To { get; set; }
- public string Value { get; set; }
-
- }
- }
|