mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-12-04 12:42:47 +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();
|
|
}
|
|
}
|