namespace Content.Client._Sunrise.InteractionsPanel.Models; public sealed class CustomInteraction { public string Id { get; set; } = string.Empty; public string Name { get; set; } = string.Empty; public string Description { get; set; } = string.Empty; public string IconId { get; set; } = string.Empty; public string CategoryId { get; set; } = string.Empty; public List InteractionMessages { get; set; } = new(); public List SoundIds { get; set; } = new(); public bool SpawnsEffect { get; set; } public float EffectChance { get; set; } public string EntityEffectId { get; set; } = string.Empty; public float Cooldown { get; set; } = 3.0f; }