Skip to content

Commit

Permalink
fix PropertySkip value type error (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoli799480165 authored Dec 15, 2023
1 parent a3faa6f commit 7db164a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Types/IProperty.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public interface IProperty
public struct PropertySkip
{
public bool SkipCheck { get; set; }
public Property<string, int> Value { get; set; }
public Property<string, double> Value { get; set; }
public override string ToString()
{
return Value.ToString();
Expand Down

0 comments on commit 7db164a

Please sign in to comment.