Files
CollabVMAuthServer/CollabVMAuthServer/HTTP/Payloads/ListBotsPayload.cs
Elijah R 290a9a5777 major refactor:
- 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
2025-05-06 04:34:46 -04:00

8 lines
207 B
C#

namespace Computernewb.CollabVMAuthServer.HTTP.Payloads;
public class ListBotsPayload
{
public int resultsPerPage { get; set; }
public int page { get; set; }
public string? owner { get; set; }
}