Add .NET Core 2.1 versions
This commit is contained in:
15
vote/dotnet/Vote/Messaging/Messages/Events/VoteCastEvent.cs
Normal file
15
vote/dotnet/Vote/Messaging/Messages/Events/VoteCastEvent.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace Vote.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";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user