Iceshrimp.NET/Iceshrimp.Frontend/Core/Services/GlobalComponentSvc.cs
2025-01-30 11:12:54 +01:00

13 lines
467 B
C#

using Iceshrimp.Frontend.Components;
namespace Iceshrimp.Frontend.Core.Services;
public class GlobalComponentSvc
{
public EmojiPicker? EmojiPicker { get; set; }
public BannerContainer? BannerComponent { get; set; }
public ConfirmDialog? ConfirmDialog { get; set; }
public NoticeDialog? NoticeDialog { get; set; }
public PromptDialog? PromptDialog { get; set; }
public SelectDialog? SelectDialog { get; set; }
}