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

27 lines
527 B
C#

using MediatR;
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
using Jambo.Producer.Application.Commands;
namespace Jambo.Producer.Application.Commands.Blogs
{
[DataContract]
public class EnableBlogCommand : CommandBase, IRequest
{
[DataMember]
public Guid Id { get; private set; }
public EnableBlogCommand()
{
}
public EnableBlogCommand(Guid id) : this()
{
Id = id;
}
}
}