1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
-
- #nullable disable
-
- namespace WebApplication3.Models
- {
- public partial class Acuifero
- {
- public uint Id { get; set; }
- public string Nombre { get; set; }
- public string Fichero { get; set; }
- public string WorldOriginX { get; set; }
- public string WorldOriginY { get; set; }
- public string Angle { get; set; }
- public string Length { get; set; }
- public string Height { get; set; }
- public string RechargeGeometry { get; set; }
- public string RechargeColorMap { get; set; }
-
- }
- }
|