14 lines
314 B

4 months ago
using System;
using System.Collections.Generic;
using System.Text;
namespace ReZero.SuperAPI
{
public class DataModelDefaultValueColumnParameter
{
public string? PropertyName { get; set; }
public string? Value { get; set; }
public DefaultValueType? Type { get; set; }
}
}