Beacon.cs 522 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using UnityEngine;
  7. using UnityEngine.UI;
  8. public class Beacon
  9. {
  10. public uint? id { get; set; }
  11. public float x { get; set; }
  12. public float y { get; set; }
  13. public float z { get; set; } // этаж
  14. public string uuid { get; set; }
  15. public uint minor { get; set; }
  16. public uint major { get; set; }
  17. public GameObject beacon { get; set; }
  18. public Button button { get; set; }
  19. }