第一次提交至Git

This commit is contained in:
2024-03-11 16:32:52 +08:00
commit 3f6c4d62b9
2865 changed files with 2172317 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
Public Class UpdatePackageInfo
''' <summary>
''' 软件索引
''' </summary>
''' <returns></returns>
Property SoftwareID() As Integer
''' <summary>
''' 软件名称
''' </summary>
''' <returns></returns>
Property SoftwareName() As String
''' <summary>
''' 软件最新版本
''' </summary>
''' <returns></returns>
Property LastVersion() As String
''' <summary>
''' 软件包MD5
''' </summary>
''' <returns></returns>
Property BinPackageMd5() As String
''' <summary>
''' 软件包名,不含完整路径
''' </summary>
''' <returns></returns>
Property PackageName() As String
''' <summary>
''' 软件发布日期
''' </summary>
''' <returns></returns>
Property ReleaseDate() As DateTime
End Class