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 System.Linq;
|
|
|
|
using Sirenix.OdinInspector;
|
2025-08-12 04:28:23 +00:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace DDD
|
|
|
|
{
|
|
|
|
public enum CustomerType
|
|
|
|
{
|
|
|
|
None = 0,
|
|
|
|
Normal,
|
|
|
|
Special
|
|
|
|
}
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
public class CustomerData : IId
|
|
|
|
{
|
|
|
|
/// <summary>식별번호</summary>
|
|
|
|
[Tooltip("식별번호")]
|
|
|
|
[field: SerializeField]
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
|
|
/// <summary>손님 타입</summary>
|
|
|
|
[Tooltip("손님 타입")]
|
|
|
|
public CustomerType CustomerType;
|
|
|
|
|
|
|
|
/// <summary>스파인 스킨 키 값</summary>
|
|
|
|
[Tooltip("스파인 스킨 키 값")]
|
|
|
|
public string SpineSkinKey;
|
|
|
|
|
|
|
|
/// <summary>선호 맛들</summary>
|
|
|
|
[Tooltip("선호 맛들")]
|
|
|
|
public string FavoriteTastes;
|
|
|
|
|
2025-08-12 04:58:25 +00:00
|
|
|
[ReadOnly] public List<string> ValidFavoriteTastes = new();
|
2025-08-12 04:28:23 +00:00
|
|
|
}
|
|
|
|
}
|