ProjectDDD/Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Classes/CustomerPoolData.cs

25 lines
541 B
C#
Raw Normal View History

2025-08-12 04:28:23 +00:00
// <auto-generated>
using System;
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;
}
}