- 简介
- 目录大纲
- 最新文档
api服务
```java public static class ServiceExtensions { //添加跨域 public static void ConfigureCors(this IServiceCollection services) { services.AddCors(option=> { ……
孙端己 - 2024年8月28日 01:07
实体
```java public class Player { public Guid Id { get; set; } public string Account{ get; set; } public string AccountType { get; set; } public DateTime DateCreated { get; set; } ……
孙端己 - 2024年8月28日 00:57
4.日志
```java public class Greeter : IGreeter { private readonly GreetingOptions _options; private readonly ILogger _logger; public Greeter(IOptions<GreetingOptions> optionsAccessor,……
孙端己 - 2024年8月26日 11:42
3-配置
基础配置 js { "greeting": { "morning": "Good morning!", "afternoon": "Good afternoon!", "evening": "Good evening!" } } ```java public interface IGreeter { string Greet(DateTimeOffset t……
孙端己 - 2024年8月26日 11:41