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;
public class ResourceEvent : System.Attribute
{
string expansion;
string annotation;
public string Expansion
public readonly string Annotation
{
get
{
return expansion;
return annotation;
}
}
public ResourceEvent(string expansion = null)
public ResourceEvent(string annotation = null)
{
this.expansion = expansion;
this.annotation = annotation;
}
}