2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-06-27 13:33:13 +00:00

fix generator

This commit is contained in:
2022-06-16 03:02:14 +03:00
parent 80922a13ee
commit f5e61d4b86
14 changed files with 159 additions and 80 deletions

View File

@ -33,19 +33,19 @@ namespace Esiur.Resource;
[AttributeUsage(AttributeTargets.Method)]
public class ResourceFunction : System.Attribute
{
private string expansion = null;
private string annotation = null;
public string Expansion
public string Annotation
{
get
{
return expansion;
return annotation;
}
}
public ResourceFunction(string expansion = null)
public ResourceFunction(string annotation = null)
{
this.expansion = expansion;
this.annotation = annotation;
}
}