changing folder structure

This commit is contained in:
2023-08-10 16:01:39 -03:00
parent 73b0bac359
commit 3b2a4dc6d5
16 changed files with 19 additions and 16 deletions

View File

@@ -0,0 +1,14 @@
namespace Kasbot.Annotations
{
public class FlagAttribute : Attribute
{
public List<string> Names { get; set; }
public FlagAttribute() { }
public FlagAttribute(params string[] names)
{
Names = names.ToList();
}
}
}