mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-14 17:42:47 +01:00
12 lines
252 B
C#
12 lines
252 B
C#
using System;
|
|
|
|
namespace TweetDck.Updates{
|
|
class UpdateAcceptedEventArgs : EventArgs{
|
|
public readonly UpdateInfo UpdateInfo;
|
|
|
|
public UpdateAcceptedEventArgs(UpdateInfo info){
|
|
this.UpdateInfo = info;
|
|
}
|
|
}
|
|
}
|