mirror of
https://github.com/dockersamples/example-voting-app.git
synced 2026-05-21 00:42:51 +00:00
15 lines
337 B
C#
15 lines
337 B
C#
using System;
|
|
|
|
namespace Worker.Messaging.Messages
|
|
{
|
|
public class VoteCastEvent : Message
|
|
{
|
|
public override string Subject { get { return MessageSubject; } }
|
|
|
|
public string VoterId {get; set;}
|
|
|
|
public string Vote {get; set; }
|
|
|
|
public static string MessageSubject = "events.vote.votecast";
|
|
}
|
|
} |