Last active
February 23, 2020 17:17
ASP.NET Core ile Event Sourcing 01 - Store - CreatedTask.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace EventSourcingTaskApp.Core.Events | |
{ | |
using System; | |
public class CreatedTask | |
{ | |
public Guid TaskId { get; set; } | |
public string CreatedBy { get; set; } | |
public string Title { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment