pschelpdesk/Vendor/Prise.Proxy/Parameter.cs
2024-11-04 20:45:34 +01:00

16 lines
289 B
C#

using System;
namespace Prise.Proxy
{
public struct Parameter
{
public string Name { get; }
public Type? Type { get; }
public Parameter(string name, Type? type = null)
{
this.Name = name;
this.Type = type;
}
}
}