15 lines
507 B
C#
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();
|
|
}
|
|
}
|