mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-25 05:42:45 +01:00
12 lines
253 B
C#
12 lines
253 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using Avalonia.Controls;
|
|
|
|
namespace DHT.Desktop.Main;
|
|
|
|
[SuppressMessage("ReSharper", "MemberCanBeInternal")]
|
|
public sealed partial class AboutWindow : Window {
|
|
public AboutWindow() {
|
|
InitializeComponent();
|
|
}
|
|
}
|