Exemplo n.º 1
0
 public TargetResult(SongTarget target, SongState songState, bool success, Exception?exception)
 {
     Target    = target;
     Success   = success;
     SongState = songState;
     Exception = exception;
 }
Exemplo n.º 2
0
 public DirectoryTargetResult(SongTarget target, SongState songState, bool success, ZipExtractResult?zipExtractResult, Exception?exception)
     : base(target, songState, success, exception)
 {
     ZipExtractResult = zipExtractResult;
 }
Exemplo n.º 3
0
 public DirectoryTargetResult(SongTarget target, SongState songState, bool success, Exception?exception)
     : base(target, songState, success, exception)
 {
 }