19 lines
533 B
C#
19 lines
533 B
C#
using Intromat.Views;
|
|
using NodeNetwork.ViewModels;
|
|
using ReactiveUI;
|
|
using Splat;
|
|
|
|
namespace Intromat.ViewModels
|
|
{
|
|
public class CodeGenPendingConnectionViewModel : PendingConnectionViewModel
|
|
{
|
|
static CodeGenPendingConnectionViewModel()
|
|
{
|
|
Locator.CurrentMutable.Register(() => new CodeGenPendingConnectionView(), typeof(IViewFor<CodeGenPendingConnectionViewModel>));
|
|
}
|
|
|
|
public CodeGenPendingConnectionViewModel(NetworkViewModel parent) : base(parent)
|
|
{
|
|
}
|
|
}
|
|
} |