给字符串增加默认值空
continuous-integration/drone/push Build is passing

This commit is contained in:
hang
2024-09-07 00:19:33 +08:00
parent 2d864de128
commit 6e2a58c3d7
37 changed files with 393 additions and 232 deletions
@@ -43,18 +43,18 @@ namespace IRaCIS.Core.Domain.Models
/// <summary>
/// 答案
/// </summary>
public string Answer { get; set; }
public string Answer { get; set; } = string.Empty;
/// <summary>
/// 全局阅片修改的答案
/// </summary>
public string GlobalChangeAnswer { get; set; }
public string GlobalChangeAnswer { get; set; } = string.Empty;
/// <summary>
/// 全局阅片是否修改
/// </summary>
public bool IsGlobalChange { get; set; } = false;
/// <summary>
/// 全局阅片是否修改
/// </summary>
public bool IsGlobalChange { get; set; } = false;