9 lines
183 B
C#
9 lines
183 B
C#
|
|
namespace Sozsoft.Platform.Enums;
|
|||
|
|
|
|||
|
|
public class DefaultValueDict
|
|||
|
|
{
|
|||
|
|
public object CustomValue { get; set; }
|
|||
|
|
public FieldCustomValueTypeEnum CustomValueType { get; set; }
|
|||
|
|
}
|
|||
|
|
|