replace v6 with experimental v7 code
This commit is contained in:
13
src/MpvNet.Windows/StringPair.cs
Normal file
13
src/MpvNet.Windows/StringPair.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace MpvNet.Windows;
|
||||
|
||||
public class StringPair
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Value { get; set; }
|
||||
|
||||
public StringPair(string name, string value)
|
||||
{
|
||||
Name = name;
|
||||
Value = value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user