using System;
using System.Collections.Generic;
namespace Artemis.Core;
///
/// Provides data about application update events
///
public class UpdateEventArgs : EventArgs
{
internal UpdateEventArgs(bool silent)
{
Silent = silent;
}
///
/// Gets a boolean indicating whether to silently update or not.
///
public bool Silent { get; }
}