ProjectDDD/Assets/_DDD/_Scripts/GenerateGoogleSheet/AutoCreated/Classes/CustomerData.cs
2025-08-12 13:58:25 +09:00

40 lines
916 B
C#

// <auto-generated>
using System;
using System.Collections.Generic;
using System.Linq;
using Sirenix.OdinInspector;
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;
[ReadOnly] public List<string> ValidFavoriteTastes = new();
}
}