Files

11 lines
183 B
C#
Raw Permalink 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; }
}