mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-21 16:12:01 +00:00
16 lines
324 B
C#
16 lines
324 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace Splitter_UI.Models;
|
|
|
|
public partial class ParameterEntry : ObservableObject
|
|
{
|
|
public string Key { get; }
|
|
[ObservableProperty] private string _value;
|
|
|
|
public ParameterEntry(string key, string value)
|
|
{
|
|
Key = key;
|
|
Value = value;
|
|
}
|
|
}
|