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