Inheritance: UnityEngine.MonoBehaviour
 public Request(Connection connection, Message msg)
 {
     this.connection = connection;
     this.id = msg.id;
 }
 void Start()
 {
     conn = GetComponent<NetWrok.Connection>();
     conn.OnWelcome += OnWelcome;
 }