14 lines
239 B
C#
14 lines
239 B
C#
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;
|
|
}
|
|
}
|