Skip to content

Commit

Permalink
Resolve compliance issues on TriggerLogUsageArgs
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraser Greenroyd committed Aug 24, 2022
1 parent 23eee2f commit 196f0de
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions UI_oM/TriggerLogUsageArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,16 @@
using System.Text;
using System.Threading.Tasks;

using BH.oM.Base;

namespace BH.oM.UI
{
public class TriggerLogUsageArgs : EventArgs
public class TriggerLogUsageArgs : EventArgs, IObject
{
public virtual object SelectedItem { get; set; }
public virtual string CallerName { get; set; }
public virtual string UIName { get; set; }
public virtual string UIVersion { get; set; }
public virtual Guid ComponentID { get; set; }
public virtual object SelectedItem { get; set; } = null;
public virtual string CallerName { get; set; } = "";
public virtual string UIName { get; set; } = "";
public virtual string UIVersion { get; set; } = "";
public virtual Guid ComponentID { get; set; } = Guid.Empty;
}
}

0 comments on commit 196f0de

Please sign in to comment.