Skip to content

Commit 0a1fb8e

Browse files
committed
小修改
1 parent e9b8027 commit 0a1fb8e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

csharp/ToolGood.Algorithm2/ConditionCache.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class ConditionCache
2020
/// 是否开启延迟加载
2121
/// 开启后,不会立即调取Parse
2222
/// </summary>
23-
public bool LazyLoad = false;
23+
public bool LazyLoad { get; set; } = false;
2424

2525

2626
/// <summary>

csharp/ToolGood.Algorithm2/Internals/ConditionCacheInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ public class ConditionCacheInfo
1212
/// <summary>
1313
/// 类型名
1414
/// </summary>
15-
public string CategoryName;
15+
public string CategoryName { get; internal set; }
1616
/// <summary>
1717
/// 备注
1818
/// </summary>
19-
public string Remark;
19+
public string Remark { get; internal set; }
2020
/// <summary>
2121
/// 条件字符串
2222
/// </summary>
23-
public string ConditionString;
23+
public string ConditionString { get; internal set; }
2424

2525
private ProgContext _ConditionProg;
2626
internal ProgContext ConditionProg {

0 commit comments

Comments
 (0)