From 7db164a68c4b7b7dc9a6686640c0a327bbd7d7f3 Mon Sep 17 00:00:00 2001 From: Yoli <799480165@qq.com> Date: Fri, 15 Dec 2023 17:34:03 +0800 Subject: [PATCH] fix PropertySkip value type error (#14) --- src/Types/IProperty.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Types/IProperty.cs b/src/Types/IProperty.cs index 7ceb5a9..54e6fa7 100644 --- a/src/Types/IProperty.cs +++ b/src/Types/IProperty.cs @@ -8,7 +8,7 @@ public interface IProperty public struct PropertySkip { public bool SkipCheck { get; set; } - public Property Value { get; set; } + public Property Value { get; set; } public override string ToString() { return Value.ToString();