mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-18 18:20:39 +08:00
30 lines
1.1 KiB
C#
30 lines
1.1 KiB
C#
// <copyright file="ExternalNotificationSettingsUserControl.xaml.cs" company="MaaAssistantArknights">
|
|
// MaaWpfGui - A part of the MaaCoreArknights project
|
|
// Copyright (C) 2021 MistEO and Contributors
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License v3.0 only as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY
|
|
// </copyright>
|
|
|
|
namespace MaaWpfGui.Views.UserControl.Settings
|
|
{
|
|
/// <summary>
|
|
/// ExternalNotificationSettingsUserControl.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class ExternalNotificationSettingsUserControl : System.Windows.Controls.UserControl
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ExternalNotificationSettingsUserControl"/> class.
|
|
/// </summary>
|
|
public ExternalNotificationSettingsUserControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|