Multi-Platform Package Manager for Stable Diffusion
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

12 lines
337 B

using System;
using Avalonia.Interactivity;
namespace StabilityMatrix.Avalonia.Controls.CodeCompletion;
public class InsertionRequestEventArgs : EventArgs
{
public required ICompletionData Item { get; init; }
public required RoutedEventArgs TriggeringEvent { get; init; }
public string? AppendText { get; init; }
}