16 lines
289 B
C#
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;
|
|
}
|
|
}
|
|
} |