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

31 lines
884 B
C#
Raw Normal View History

2025-08-28 09:11:13 +00:00
// <auto-generated>
using System;
using UnityEngine;
namespace DDD
{
[Serializable]
public class InteractionDataEntry : IId
{
/// <summary>식별ID</summary>
[Tooltip("식별ID")]
[field: SerializeField]
public string Id { get; set; }
/// <summary>파싱 전 타입</summary>
[Tooltip("파싱 전 타입")]
[field: SerializeField]
public string UnparsedInteractionType;
2025-08-28 10:06:38 +00:00
/// <summary>상호작용 기본 현지화 키 값</summary>
[Tooltip("상호작용 기본 현지화 키 값")]
2025-08-28 09:11:13 +00:00
[field: SerializeField]
2025-08-28 10:06:38 +00:00
public string DefaultMessageKey;
2025-08-28 09:11:13 +00:00
2025-08-28 10:06:38 +00:00
/// <summary>상호작용 예외처리 현지화 키 값</summary>
[Tooltip("상호작용 예외처리 현지화 키 값")]
2025-08-28 09:11:13 +00:00
[field: SerializeField]
2025-08-28 10:06:38 +00:00
public string ConditionalMessageKey;
2025-08-28 09:11:13 +00:00
}
}