2025-08-12 04:28:23 +00:00
|
|
|
// <auto-generated>
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace DDD
|
|
|
|
{
|
|
|
|
[CreateAssetMenu(fileName = "CustomerPoolDataSo", menuName = "GoogleSheet/CustomerPoolDataSo")]
|
2025-08-12 04:58:25 +00:00
|
|
|
public class CustomerPoolDataSo : DataSo<CustomerPoolData>
|
|
|
|
{
|
|
|
|
protected override void Initialize()
|
|
|
|
{
|
|
|
|
base.Initialize();
|
|
|
|
|
|
|
|
foreach (var customerPoolData in _datas)
|
|
|
|
{
|
|
|
|
ParseDelimitedListInPlace(customerPoolData.Customers, customerPoolData.ValidCustomers);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-08-12 04:28:23 +00:00
|
|
|
}
|