成功写入Uesrs数据库表
This commit is contained in:
15
WorkStation.Share/ApiResponse.cs
Normal file
15
WorkStation.Share/ApiResponse.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WorkStation.Share
|
||||
{
|
||||
public class ApiResponse(bool success, string? message, object? data)
|
||||
{
|
||||
public bool Success { get; set; } = success;
|
||||
public string? Message { get; set; } = message;
|
||||
public object? Data { get; set; } = data;
|
||||
}
|
||||
}
|
@ -1,7 +0,0 @@
|
||||
namespace WorkStation.Share
|
||||
{
|
||||
public class Class1
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user