Files
Fonepay-Unity/Packages/com.voidbotz.fonepayunity/Runtime/Core/FonepayBakedSecrets.cs
Savya Bikram Shah 2223b2d3ae initital push
2026-05-07 14:18:36 +05:45

16 lines
474 B
C#

using UnityEngine;
namespace Darkmatter.Fonepay
{
/// <summary>
/// Transient ScriptableObject containing baked secrets for player builds.
/// Created by FonepayBuildSecretsInjector before build, deleted after build completes.
/// Never commit this asset — added to .gitignore by the settings window.
/// </summary>
public class FonepayBakedSecrets : ScriptableObject
{
public string password;
public string secretKey;
}
}