using System; namespace FormulaEnginePoC.DynamicExpressionParse { internal class DynamicProperty { public DynamicProperty(string name, Type type) { if (type == null) throw new ArgumentNullException(nameof(type)); Name = name ?? throw new ArgumentNullException(nameof(name)); Type = type; } public string Name { get; } public Type Type { get; } } }