Files
windows_lock_vb/Yjpp36/dtos/Result.vb
2025-05-19 14:06:21 +08:00

47 lines
1.1 KiB
VB.net

'获取密码返回'
Public Class PasswordResult
Public Property code As String
Public Property msg As String
Public Property data As String
End Class
'白名单数据返回'
Public Class MahineWhiteResult
Public Property code As String
Public Property msg As String
Public Property data As String
End Class
''' <summary>
''' 心跳返回数据
''' </summary>
Public Class HeartResult
'code 0-成功 1-失败'
Public Property code As Integer
'msg 错误消息'
Public Property msg As String
'进程限制'
Public Property c As String
'应用限制'
Public Property g As String
'进程限制 1-限制 2-不限制'
Public Property tl As Integer
'应用限制 1-限制 2-不限制'
Public Property al As Integer
'心跳间隔(秒)'
Public Property hi As Integer
'关键字心跳(秒)'
Public Property ki As Integer
'关键字过滤 1-开启 2-关闭'
Public Property kl As Integer
'拦截日志间隔'
Public Property ii As Double
'是否重启电脑'
Public Property rb As Boolean
End Class