mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-14 17:42:47 +01:00
12 lines
270 B
C#
12 lines
270 B
C#
using System;
|
|
|
|
namespace TweetDuck.Updates.Events{
|
|
sealed class UpdateEventArgs : EventArgs{
|
|
public UpdateInfo UpdateInfo { get; }
|
|
|
|
public UpdateEventArgs(UpdateInfo updateInfo){
|
|
this.UpdateInfo = updateInfo;
|
|
}
|
|
}
|
|
}
|