1
0
mirror of https://github.com/chylex/Brotli-Builder.git synced 2024-07-27 03:28:51 +02:00
Brotli-Builder/BrotliBuilder/State/StateChangedEventArgs.cs

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