Explorar el Código

add summary comment.

master
Savorboard hace 7 años
padre
commit
52dd95ffbb
Se han modificado 1 ficheros con 12 adiciones y 0 borrados
  1. +12
    -0
      src/DotNetCore.CAP/MessageContext.cs

+ 12
- 0
src/DotNetCore.CAP/MessageContext.cs Ver fichero

@@ -1,11 +1,23 @@
namespace DotNetCore.CAP
{
/// <summary>
/// Message context
/// </summary>
public class MessageContext
{
/// <summary>
/// Gets or sets the message group.
/// </summary>
public string Group { get; set; }

/// <summary>
/// Message name.
/// </summary>
public string Name { get; set; }

/// <summary>
/// Message content
/// </summary>
public string Content { get; set; }

public override string ToString()


Cargando…
Cancelar
Guardar