mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
20 lines
466 B
C#
20 lines
466 B
C#
using Mesen.Debugger.Labels;
|
|
using Mesen.ViewModels;
|
|
using System;
|
|
using static Mesen.Debugger.ViewModels.LabelEditViewModel;
|
|
|
|
namespace Mesen.Debugger.ViewModels
|
|
{
|
|
public class CommentEditViewModel : ViewModelBase
|
|
{
|
|
public ReactiveCodeLabel Label { get; set; }
|
|
|
|
[Obsolete("For designer only")]
|
|
public CommentEditViewModel() : this(new CodeLabel()) { }
|
|
|
|
public CommentEditViewModel(CodeLabel label)
|
|
{
|
|
Label = new ReactiveCodeLabel(label);
|
|
}
|
|
}
|
|
}
|