Files
mpv.net/src/MpvNet.Windows/StringPair.cs
2023-10-24 11:17:45 +02:00

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;
}
}