Files

24 lines
625 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace XP.Hardware.RaySource.Comet.Messages.Responses
{
/// <summary>
/// 日志响应,用于 Host 进程向主进程传递日志消息
/// </summary>
public class LogResponse : RaySourceResponse
{
/// <summary>
/// 日志级别(Debug、Info、Warn、Error、Fatal
/// </summary>
public string Level { get; set; }
/// <summary>
/// 日志消息内容
/// </summary>
public string Message { get; set; }
/// <summary>
/// 日志消息参数
/// </summary>
public string[] Args { get; set; }
}
}