mirror of
https://github.com/dockersamples/example-voting-app.git
synced 2026-05-09 11:06:57 +00:00
17 lines
320 B
C#
17 lines
320 B
C#
using System;
|
|
|
|
namespace Worker.Messaging.Messages
|
|
{
|
|
public abstract class Message
|
|
{
|
|
public string CorrelationId { get; set; }
|
|
|
|
public abstract string Subject { get; }
|
|
|
|
public Message()
|
|
{
|
|
CorrelationId = Guid.NewGuid().ToString();
|
|
}
|
|
}
|
|
}
|