Files
telegram-bot/modules/CodeWatcher/Dto/HasteResponse.cs
T

11 lines
183 B
C#
Raw Normal View History

2023-07-28 16:53:01 +03:00
namespace West.TelegramBot.CodeWatcher.Dto;
public class HasteResponse
{
public HasteResponse(string key)
{
Key = key;
}
public string Key { get; set; }
}