|
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; } |
|
} |
|
}
|
|
|