This repository has been archived on 2025-11-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AUTS_OLD/AUTS_ServiceControler/UpdatePackageInfo.vb

39 lines
825 B
VB.net
Raw Normal View History

2024-03-11 16:32:52 +08:00
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