Files
2026-06-08 10:59:21 +08:00

24 lines
418 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 WebApi.Models
{
public class msgResHeader
{
/// <summary>
/// 成功时反馈“200”失败时反馈“500”
/// </summary>
public string code
{
get;
set;
}
/// <summary>
/// 返回消息
/// </summary>
public string message
{
get;
set;
}
}
}