CPF/CPF.ReoGrid/RGFPersistenceProvider.cs
2024-06-24 10:15:59 +08:00

15 lines
507 B
C#

using System;
using System.Collections.Generic;
namespace CPF.ReoGrid
{
public static class RGFPersistenceProvider
{
internal static Dictionary<Type, string> CustomBodyTypeIdentifiers { get; } = new Dictionary<Type, string>();
internal static Dictionary<string, RGFCustomBodyHandler> CustomBodyTypeHandlers { get; } = new Dictionary<string, RGFCustomBodyHandler>();
public static CustomBodyTypeProviderCollection CustomBodyTypeProviders { get; } = new CustomBodyTypeProviderCollection();
}
}