Доработан менеджер состояний.
This commit is contained in:
20
BotPages.Core/Pages/ActionAttribute.cs
Normal file
20
BotPages.Core/Pages/ActionAttribute.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BotPages.Core
|
||||
{
|
||||
public class ActionAttribute : Attribute
|
||||
{
|
||||
public ActionAttribute(string label)
|
||||
{
|
||||
Label = label;
|
||||
}
|
||||
|
||||
public string Label { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user