mirror of
https://github.com/FastTunnel/FastTunnel.git
synced 2025-02-08 10:59:31 +08:00
24 lines
628 B
C#
24 lines
628 B
C#
// Licensed under the Apache License, Version 2.0 (the "License").
|
|
// You may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// https://github.com/FastTunnel/FastTunnel/edit/v2/LICENSE
|
|
// Copyright (c) 2019 Gui.H
|
|
|
|
namespace FastTunnel.Server.Models
|
|
{
|
|
public class ApiResponse
|
|
{
|
|
/// <summary>
|
|
/// 错误码
|
|
/// 0 成功,其他为失败
|
|
/// </summary>
|
|
public bool Success { get; set; }
|
|
|
|
public string Message { get; set; }
|
|
|
|
public string Code { get; set; }
|
|
|
|
public object Data { get; set; }
|
|
}
|
|
}
|