mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-01-15 14:42:46 +01:00
15 lines
353 B
C#
15 lines
353 B
C#
using System;
|
|
using TweetLib.Utils.Data;
|
|
|
|
namespace TweetLib.Core.Systems.Updates {
|
|
public sealed class UpdateCheckEventArgs : EventArgs {
|
|
public int EventId { get; }
|
|
public Result<UpdateInfo> Result { get; }
|
|
|
|
internal UpdateCheckEventArgs(int eventId, Result<UpdateInfo> result) {
|
|
this.EventId = eventId;
|
|
this.Result = result;
|
|
}
|
|
}
|
|
}
|