mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-08-16 06:31:42 +02:00
.github
.idea
bld
lib
TweetLib.Browser
TweetLib.Browser.CEF
TweetLib.Communication
TweetLib.Core
Application
Features
Resources
Systems
Configuration
Logging
Updates
IUpdateCheckClient.cs
UpdateCheckEventArgs.cs
UpdateChecker.cs
UpdateDownloadStatus.cs
UpdateInfo.cs
UpdateInteractionManager.cs
App.cs
Lib.cs
TweetLib.Core.csproj
TweetLib.Utils
TweetTest.Browser.CEF
TweetTest.Core
TweetTest.Utils
linux
resources
windows
.gitattributes
.gitignore
LICENSE.md
README.md
TweetDuck.sln
TweetDuck.sln.DotSettings
Version.cs
global.json
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;
|
|
}
|
|
}
|
|
}
|