//--------------------------------------------------------
|
// [Author]: 第二世界
|
// [ Date ]: Monday, October 15, 2018
|
//--------------------------------------------------------
|
|
using UnityEngine;
|
using System;
|
|
namespace TableConfig {
|
|
|
public partial class ContactConfig : ConfigBase {
|
|
public string appid { get ; private set; }
|
public string qq { get ; private set; }
|
public string phone { get ; private set; }
|
|
public override string getKey()
|
{
|
return appid.ToString();
|
}
|
|
public override void Parse() {
|
try
|
{
|
appid = rawContents[0].Trim();
|
|
qq = rawContents[1].Trim();
|
|
phone = rawContents[2].Trim();
|
}
|
catch (Exception ex)
|
{
|
DebugEx.Log(ex);
|
}
|
}
|
|
}
|
|
}
|