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

16 lines
307 B
C#

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