2025-08-12 04:28:23 +00:00
|
|
|
// <auto-generated>
|
|
|
|
using System;
|
2025-08-12 04:58:25 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using Sirenix.OdinInspector;
|
2025-08-12 04:28:23 +00:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace DDD
|
|
|
|
{
|
|
|
|
[Serializable]
|
|
|
|
public class CustomerPoolData : IId
|
|
|
|
{
|
|
|
|
/// <summary>식별번호</summary>
|
|
|
|
[Tooltip("식별번호")]
|
|
|
|
[field: SerializeField]
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
|
|
/// <summary>손님 최대 수</summary>
|
|
|
|
[Tooltip("손님 최대 수")]
|
|
|
|
public int CustomerLimitCount;
|
|
|
|
|
|
|
|
/// <summary>등장 손님들</summary>
|
|
|
|
[Tooltip("등장 손님들")]
|
|
|
|
public string Customers;
|
2025-08-12 04:58:25 +00:00
|
|
|
|
|
|
|
[ReadOnly] public List<string> ValidCustomers = new();
|
2025-08-12 11:46:30 +00:00
|
|
|
|
2025-08-12 04:28:23 +00:00
|
|
|
}
|
|
|
|
}
|