Skip to content

Commit

Permalink
chore: Adjust format
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban authored Nov 4, 2024
1 parent d199e0d commit e9fb0bc
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/Uno.UI.RemoteControl.VS/Notifications/InfoBar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,16 +146,16 @@ void IVsInfoBarUIEvents.OnActionItemClicked(IVsInfoBarUIElement infoBarUIElement
}

record class ActionBarTextSpan(
string Text
, bool Bold = false
, bool Italic = false
, bool Underline = false) : IVsInfoBarTextSpan;
string Text,
bool Bold = false,
bool Italic = false,
bool Underline = false) : IVsInfoBarTextSpan;

record ActionBarItem(
string? Text
, string? Name = null
, bool Bold = false
, bool Italic = false
, bool Underline = false
, object? ActionContext = null
, bool IsButton = false) : IVsInfoBarActionItem;
string? Text,
string? Name = null,
bool Bold = false,
bool Italic = false,
bool Underline = false,
object? ActionContext = null,
bool IsButton = false) : IVsInfoBarActionItem;

0 comments on commit e9fb0bc

Please sign in to comment.