mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-14 17:42:47 +01:00
16 lines
397 B
C#
16 lines
397 B
C#
using System;
|
|
|
|
namespace TweetDuck.Updates.Events{
|
|
class UpdateCheckEventArgs : EventArgs{
|
|
public int EventId { get; }
|
|
public UpdateInfo UpdateInfo { get; }
|
|
|
|
public bool UpdateAvailable => UpdateInfo != null;
|
|
|
|
public UpdateCheckEventArgs(int eventId, UpdateInfo updateInfo){
|
|
EventId = eventId;
|
|
UpdateInfo = updateInfo;
|
|
}
|
|
}
|
|
}
|