using BeWo.View.Windows; using BS.Shared; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; namespace BeWo.Services { internal interface IWindowFactory { AnimatedBeWoWindow GetAiConversationWindow(UIContext uIContext, Control control, double height = 600, double width = 1200); Control GetAiModalViewWindow(UIContext uIContext, Control control, double height = 600, double width = 1200); } }