|
using Chatbot.Api.Application.Events;
|
|
using NDB.Application.DataContracts;
|
|
using System;
|
|
|
|
namespace Chatbot.Api.Application.Commands
|
|
{
|
|
public class TestLogger : Command<LoggerTested>
|
|
{
|
|
public TestLogger()
|
|
: base(new Metadata() { CorrelationId = Guid.NewGuid() })
|
|
{
|
|
}
|
|
}
|
|
}
|