mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
19 lines
342 B
C#
19 lines
342 B
C#
using System;
|
|
using ReactiveUI.Fody.Helpers;
|
|
|
|
namespace Wabbajack.View_Models.Controls;
|
|
|
|
public class RemovableItemViewModel : ViewModel
|
|
{
|
|
|
|
public string Text { get; }
|
|
|
|
public Action RemoveFn { get; }
|
|
|
|
public RemovableItemViewModel(string text, Action removeFn)
|
|
{
|
|
Text = text;
|
|
RemoveFn = removeFn;
|
|
|
|
}
|
|
} |