1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-08-18 13:31:41 +02:00
Files
Configuration
Core
Libraries
Migration
Plugins
Properties
Resources
Updates
FormUpdateDownload.Designer.cs
FormUpdateDownload.cs
FormUpdateDownload.resx
UpdateAcceptedEventArgs.cs
UpdateCheckEventArgs.cs
UpdateHandler.cs
UpdateInfo.cs
.gitignore
LICENSE.md
Program.cs
README.md
TweetDck.csproj
TweetDck.sln
_postbuild.bat
TweetDuck/Updates/UpdateCheckEventArgs.cs

15 lines
485 B
C#

using System;
namespace TweetDck.Updates{
class UpdateCheckEventArgs : EventArgs{
public int EventId { get; private set; }
public bool UpdateAvailable { get; private set; }
public string LatestVersion { get; private set; }
public UpdateCheckEventArgs(int eventId, bool updateAvailable, string latestVersion){
EventId = eventId;
UpdateAvailable = updateAvailable;
LatestVersion = latestVersion;
}
}
}