1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-17 20:34:09 +02:00
TweetDuck/lib/TweetLib.Core/Features/Updates/UpdateCheckEventArgs.cs

15 lines
404 B
C#

using System;
using TweetLib.Core.Data;
namespace TweetLib.Core.Features.Updates{
public 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;
}
}
}