Skip to content

Commit

Permalink
feat: update alert sdk add rules for support show & source
Browse files Browse the repository at this point in the history
  • Loading branch information
Qinyouzeng committed Sep 12, 2024
1 parent 6003448 commit 958e8e7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,8 @@ public class AlarmRuleModel
public List<AlarmRuleItemModel> Items { get; set; } = new();

public string ModifierName { get; set; } = string.Empty;

public string Source { get; set; } = default!;

public bool Show { get; set; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,8 @@ public class AlarmRuleUpsertModel
public List<MetricMonitorItemModel> MetricMonitorItems { get; set; } = new();

public List<AlarmRuleItemModel> Items { get; set; } = new();

public string Source { get; set; } = default!;

public bool Show { get; set; }
}

0 comments on commit 958e8e7

Please sign in to comment.