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

36 lines
766 B
C#
Raw Normal View History

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