11 lines
196 B
C#
11 lines
196 B
C#
|
|
using Avalonia.Controls;
|
||
|
|
|
||
|
|
namespace Nebula.Launcher.Views;
|
||
|
|
|
||
|
|
public partial class FileContentEntryView : UserControl
|
||
|
|
{
|
||
|
|
public FileContentEntryView()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|