mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
22 lines
336 B
C#
22 lines
336 B
C#
using System;
|
|
|
|
namespace MicrosoftZunePlayback
|
|
{
|
|
public class PlayerPropertyChangedEventArgs : EventArgs
|
|
{
|
|
private string _key;
|
|
|
|
private object _value;
|
|
|
|
public object Value => _value;
|
|
|
|
public string Key => _key;
|
|
|
|
public PlayerPropertyChangedEventArgs(string key, object value)
|
|
{
|
|
_key = key;
|
|
_value = value;
|
|
}
|
|
}
|
|
}
|