mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-13 06:54:45 +01:00
26 lines
436 B
C#
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;
|
|
}
|