Files
BingoGrassland/Assets/MYp0ZVTT2QSDK/ThirdParty/com.unity.mobile.notifications@2.3.2/Editor/NotificationSetting.cs
T
changyunjiaandchangyunjia c28ea8ea4a 提交
2026-06-29 16:21:36 +08:00

27 lines
766 B
C#
Executable File

using System.Collections.Generic;
namespace Unity.Notifications
{
internal class NotificationSetting
{
public string Key;
public string Label;
public string Tooltip;
public object Value;
public bool WriteToPlist;
public List<NotificationSetting> Dependencies;
public NotificationSetting(string key, string label, string tooltip, object value, bool writeToPlist = true,
List<NotificationSetting> dependencies = null)
{
this.Key = key;
this.Label = label;
this.Tooltip = tooltip;
this.Value = value;
this.WriteToPlist = writeToPlist;
this.Dependencies = dependencies;
}
}
}