11 lines
314 B
C#
11 lines
314 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using MethodMap = System.Collections.Generic.Dictionary<string, System.Reflection.MethodInfo>;
|
|
namespace TOOHUCardAPI.Data.Services
|
|
{
|
|
public class MethodMapService
|
|
{
|
|
public static readonly Dictionary<Type, MethodMap> MethodMapByType = new();
|
|
}
|
|
} |