public CheckData(VersionCheckType type, string version)
 {
     this.m_typeEnum = type;
     this.m_version  = version;
 }
 public VersionCheckData(HttpListenerResponse response, VersionCheckType type, string version = "")
 {
     this.m_response = response;
     this.m_type     = type;
     this.m_version  = version;
 }