mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-12-04 21:42:47 +01:00
12 lines
268 B
C#
12 lines
268 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using Avalonia.Controls;
|
|
|
|
namespace DHT.Desktop.Main.Pages;
|
|
|
|
[SuppressMessage("ReSharper", "MemberCanBeInternal")]
|
|
public sealed partial class DownloadsPage : UserControl {
|
|
public DownloadsPage() {
|
|
InitializeComponent();
|
|
}
|
|
}
|