mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-14 17:42:47 +01:00
15 lines
485 B
C#
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;
|
|
}
|
|
}
|
|
} |