You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using System;
|
|
|
|
namespace SlnMesnac.TouchSocket
|
|
{
|
|
public class Back
|
|
{
|
|
public int Code { get; set; } =200;
|
|
public string msg { get; set; } = "操作成功";
|
|
public string timestamp { get; set; } = DateTimeOffset.UtcNow.ToUnixTimeSeconds().ToString();
|
|
}
|
|
|
|
|
|
} |