mirror of
https://github.com/chylex/Brotli-Builder.git
synced 2024-12-21 22:42:48 +01:00
14 lines
337 B
C#
14 lines
337 B
C#
using System;
|
|
|
|
namespace BrotliBuilder.State{
|
|
class StateChangedEventArgs : EventArgs{
|
|
public BrotliFileState From { get; }
|
|
public BrotliFileState To { get; }
|
|
|
|
public StateChangedEventArgs(BrotliFileState from, BrotliFileState to){
|
|
this.From = from;
|
|
this.To = to;
|
|
}
|
|
}
|
|
}
|