mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
14 lines
293 B
C#
14 lines
293 B
C#
namespace Serein.Library.Api
|
|
{
|
|
/// <summary>
|
|
/// 枚举转换器接口
|
|
/// </summary>
|
|
/// <typeparam name="TEnum"></typeparam>
|
|
/// <typeparam name="TValue"></typeparam>
|
|
public interface IEnumConvertor<TEnum, TValue>
|
|
{
|
|
TValue Convertor(TEnum e);
|
|
}
|
|
|
|
}
|