Files
event-sourcing-jambo/source/Producer/Jambo.Producer.Application/Commands/CommandBase.cs
Ivan Paulovich fc74b10766 Spliting projects
2017-12-21 15:59:03 -02:00

13 lines
231 B
C#

using Jambo.Domain.Model;
using System;
using System.Collections.Generic;
using System.Text;
namespace Jambo.Producer.Application.Commands
{
public class CommandBase
{
public Header Header { get; set; }
}
}