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