Skip to content

Commit

Permalink
fix PropertySkip value type error
Browse files Browse the repository at this point in the history
  • Loading branch information
yoli799480165 committed Dec 15, 2023
1 parent a3faa6f commit b18a4e4
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 b18a4e4

Please sign in to comment.