Skip to content

Commit

Permalink
允许参数 Null
Browse files Browse the repository at this point in the history
  • Loading branch information
JiuLing-zhang committed Sep 12, 2023
1 parent c8841ac commit e5e2442
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/JiuLing.CommonLibs/JiuLing.CommonLibs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<PackageProjectUrl>https://github.com/JiuLing-zhang/JiuLing.CommonLibs</PackageProjectUrl>
<PackageIcon>nuget_icon.png</PackageIcon>
<PackageIconUrl />
<Version>1.6.2</Version>
<Version>1.6.3</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Copyright>Copyright (c) 2021 九零</Copyright>
Expand Down
6 changes: 3 additions & 3 deletions src/JiuLing.CommonLibs/Model/AppUpgradeInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class AppUpgradeInfo
/// <summary>
/// 版本号
/// </summary>
public int VersionCode { get; set; }
public int? VersionCode { get; set; }
/// <summary>
/// 当前版本
/// </summary>
Expand Down Expand Up @@ -42,10 +42,10 @@ public class AppUpgradeInfo
/// <summary>
/// 时间
/// </summary>
public DateTime CreateTime { get; set; }
public DateTime? CreateTime { get; set; }
/// <summary>
/// 文件大小
/// </summary>
public int FileLength { get; set; }
public int? FileLength { get; set; }
}
}

0 comments on commit e5e2442

Please sign in to comment.