mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
20 lines
422 B
C#
20 lines
422 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Artemis.Core;
|
|
|
|
/// <summary>
|
|
/// Provides data about application update events
|
|
/// </summary>
|
|
public class UpdateEventArgs : EventArgs
|
|
{
|
|
internal UpdateEventArgs(bool silent)
|
|
{
|
|
Silent = silent;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a boolean indicating whether to silently update or not.
|
|
/// </summary>
|
|
public bool Silent { get; }
|
|
} |