mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-04-30 14:41:32 +03:00
12 lines
261 B
C#
12 lines
261 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();
|
|
}
|
|
}
|
|
}
|