mirror of
https://github.com/2dust/v2rayN.git
synced 2025-12-16 00:09:50 +05:00
Code optimization, function asynchrony
This commit is contained in:
14
v2rayN/ServiceLib/Models/RetResult.cs
Normal file
14
v2rayN/ServiceLib/Models/RetResult.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace ServiceLib.Models
|
||||
{
|
||||
public class RetResult
|
||||
{
|
||||
public int Code { get; set; }
|
||||
public string? Msg { get; set; }
|
||||
public object? Data { get; set; }
|
||||
|
||||
public RetResult(int code)
|
||||
{
|
||||
Code = code;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user