Skip to content

Commit

Permalink
Update Channel Warning property order
Browse files Browse the repository at this point in the history
  • Loading branch information
Hampo committed Nov 5, 2024
1 parent c9ce41c commit 2eb8b14
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ public sealed class ChannelWarningAcknowledge
/// <summary>
/// The login of the broadcaster.
/// </summary>
public string BroadcasterUserName { get; set; } = string.Empty;
public string BroadcasterUserLogin { get; set; } = string.Empty;
/// <summary>
/// The user name of the broadcaster.
/// </summary>
public string BroadcasterUserLogin { get; set; } = string.Empty;
public string BroadcasterUserName { get; set; } = string.Empty;
/// <summary>
/// The ID of the user that has acknowledged their warning.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ public sealed class ChannelWarningSend
/// <summary>
/// The login of the broadcaster.
/// </summary>
public string BroadcasterUserName { get; set; } = string.Empty;
public string BroadcasterUserLogin { get; set; } = string.Empty;
/// <summary>
/// The user name of the broadcaster.
/// </summary>
public string BroadcasterUserLogin { get; set; } = string.Empty;
public string BroadcasterUserName { get; set; } = string.Empty;
/// <summary>
/// The user ID of the moderator who sent the warning.
/// </summary>
Expand Down

0 comments on commit 2eb8b14

Please sign in to comment.