mirror of
https://github.com/sp-tarkov/installer.git
synced 2025-02-13 09:50:45 -05:00
20 lines
518 B
C#
20 lines
518 B
C#
using Avalonia;
|
|
|
|
namespace SPTInstaller.CustomControls;
|
|
public partial class DetailedPreCheckItem : PreCheckItem
|
|
{
|
|
public DetailedPreCheckItem()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public string PreCheckDetails
|
|
{
|
|
get => GetValue(PreCheckDetailsProperty);
|
|
set => SetValue(PreCheckDetailsProperty, value);
|
|
}
|
|
|
|
public static readonly StyledProperty<string> PreCheckDetailsProperty =
|
|
AvaloniaProperty.Register<DetailedPreCheckItem, string>(nameof(PreCheckDetails));
|
|
}
|