Skip to content

Commit

Permalink
fix(view): 🐛 set CommandArgument members to be init only
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesNZL committed May 15, 2023
1 parent cdfdf43 commit 217f8f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ internal enum ViewGroupingKeys
public class CommandArgument
{
#nullable disable
public string Argument { get; set; }
public string Interpolation { get; set; }
public int Score { get; set; }
public string Argument { get; init; }
public string Interpolation { get; init; }
public int Score { get; init; }
#nullable enable
}
}

0 comments on commit 217f8f1

Please sign in to comment.