15 lines
395 B
C#
15 lines
395 B
C#
using Pilz.UI.Telerik.Dialogs;
|
|
|
|
namespace ModpackUpdater.Apps.Manager.Features.Workspaces.GitLabRepo;
|
|
|
|
internal partial class GitLabRepoWorkspaceConfigEditor : RadFlyoutBase
|
|
{
|
|
private readonly GitLabRepoWorkspaceConfig settings;
|
|
|
|
public GitLabRepoWorkspaceConfigEditor(GitLabRepoWorkspaceConfig settings)
|
|
{
|
|
this.settings = settings;
|
|
InitializeComponent();
|
|
}
|
|
}
|