Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Last active February 23, 2020 17:16
ASP.NET Core ile Event Sourcing 01 - Store - CompletedTask.cs
namespace EventSourcingTaskApp.Core.Events
{
using System;
public class CompletedTask
{
public Guid TaskId { get; set; }
public string CompletedBy { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment