mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-08-18 22:24:53 +02:00
Configuration
Core
Data
Plugins
Properties
Resources
Updates
bld
lib
TweetLib.Audio
Impl
Properties
Utils
AudioPlayer.cs
PlaybackErrorEventArgs.cs
TweetLib.Audio.csproj
subprocess
tests
.gitignore
LICENSE.md
Program.cs
README.md
Reporter.cs
TweetDuck.csproj
TweetDuck.sln
TweetDuck.sln.DotSettings
_postbuild.bat
packages.config
14 lines
324 B
C#
14 lines
324 B
C#
using System;
|
|
|
|
namespace TweetLib.Audio{
|
|
public sealed class PlaybackErrorEventArgs : EventArgs{
|
|
public string Message { get; }
|
|
public bool Ignore { get; set; }
|
|
|
|
public PlaybackErrorEventArgs(string message){
|
|
this.Message = message;
|
|
this.Ignore = false;
|
|
}
|
|
}
|
|
}
|