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