mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-14 17:42:47 +01:00
15 lines
387 B
C#
15 lines
387 B
C#
using System;
|
|
using TweetDuck.Data;
|
|
|
|
namespace TweetDuck.Updates.Events{
|
|
sealed class UpdateCheckEventArgs : EventArgs{
|
|
public int EventId { get; }
|
|
public Result<UpdateInfo> Result { get; }
|
|
|
|
public UpdateCheckEventArgs(int eventId, Result<UpdateInfo> result){
|
|
this.EventId = eventId;
|
|
this.Result = result;
|
|
}
|
|
}
|
|
}
|