Skip to content

Commit

Permalink
Add get / set to PropertyToken.position
Browse files Browse the repository at this point in the history
# Motivations
This property was init-only, which is not compatable with FiveM's mono
  • Loading branch information
Twinki14 committed Dec 30, 2023
1 parent feba930 commit 6f289ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Serilog/Parsing/PropertyToken.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace Serilog.Parsing;
/// </summary>
public sealed class PropertyToken : MessageTemplateToken
{
readonly int? _position;
int? _position { get; set; }

/// <summary>
/// Construct a <see cref="PropertyToken"/>.
Expand Down

0 comments on commit 6f289ef

Please sign in to comment.