- Now uses EntityFrameworkCore for database operations - HTTP handlers have all been refactored to use ASP.NET MVC controllers, and generally to be more idiomatic and remove copied boilerplate ugliness - Authentication/Authorization refactored to use native ASP.NET core handlers - Switch to Microsoft.Extensions.Logging instead of handrolled logging method
7 lines
200 B
C#
7 lines
200 B
C#
namespace Computernewb.CollabVMAuthServer.HTTP.Responses;
|
|
|
|
public class ListBotsResponse : ApiResponse
|
|
{
|
|
public int? totalPageCount { get; set; } = null;
|
|
public ListBot[]? bots { get; set; }
|
|
} |