Files
BH3/Assets/Scripts/Assembly-CSharp/ConfigChannel.cs
2025-08-13 09:26:42 +08:00

26 lines
436 B
C#

using System.Collections.Generic;
using MoleMole;
public class ConfigChannel
{
public string ChannelName;
public string BundleIdentifier;
public string ProductName;
public string PreDefines;
public List<string> DispatchUrls;
public int VersionCode;
public bool DataUseAssetBundle;
public bool EventUseAssetBundle;
public ConfigAccount.AccountBranch AccountBranch;
public ConfigAccount.PaymentBranch PaymentBranch;
}