Structure.cs 385 B

123456789101112131415
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. public class Structure
  6. {
  7. public uint id { get; set; }
  8. public uint acc_id { get; set; }
  9. public uint zone_id { get; set; }
  10. public uint location_id { get; set; }
  11. public int coord_x { get; set; }
  12. public int coord_y { get; set; }
  13. public DateTime ts { get; set; }
  14. }