| 41 | public interface IKeySourceAction : ISourceAction; |
| 42 | |
| 43 | public sealed record KeySourceActions(string Id, ImmutableArray<IKeySourceAction> Actions) |
| 44 | : SourceActions<IKeySourceAction>(Id, Actions); |
| 45 | |
| 46 | [JsonPolymorphic(TypeDiscriminatorPropertyName = "type")] |
| 47 | [JsonDerivedType(typeof(PauseAction), "pause")] |
no outgoing calls