mirror of
https://dev.azure.com/tstanciu94/Chatbot/_git/Chatbot
synced 2025-06-21 20:48:22 +03:00
15 lines
322 B
C#
15 lines
322 B
C#
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() })
|
|
{
|
|
}
|
|
}
|
|
}
|