chatbot/Chatbot.Api.Application/Commands/TestLogger.cs

15 lines
322 B
C#
Raw Permalink Normal View History

2020-06-07 14:43:34 +03:00
using Chatbot.Api.Application.Events;
using NDB.Application.DataContracts;
2020-06-07 14:43:34 +03:00
using System;
namespace Chatbot.Api.Application.Commands
{
public class TestLogger : Command<LoggerTested>
{
public TestLogger()
: base(new Metadata() { CorrelationId = Guid.NewGuid() })
{
}
}
}