Mercurial > servermonitor
view ServerMonitor/Attributes.cs @ 13:a36cc5c123f4
Fix SSH command sublclasses holding on to old command strings after a program update.
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Mon, 15 Apr 2019 19:25:27 -0400 |
parents | 3e1a2131f897 |
children | 68d7834dc28e |
line wrap: on
line source
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ServerMonitorApp { internal class CheckTypeAttribute : Attribute { public Type CheckType { get; private set; } public CheckTypeAttribute(Type checkType) { CheckType = checkType; } } internal class DisplayWeightAttribute : Attribute { public int DisplayWeight { get; private set; } public DisplayWeightAttribute(int displayWeight) { DisplayWeight = displayWeight; } } }