/Source/Samples/Blog/Bifrost.Samples.Blog.Events/Posts/TagAddedToPost.cs
# · C# · 15 lines · 13 code · 2 blank · 0 comment · 0 complexity · d2b1a27aaed7d72859f4757cb2aaee9b MD5 · raw file
- using System;
- using Bifrost.Events;
-
- namespace Bifrost.Samples.Blog.Events.Posts
- {
- public class TagAddedToPost : Event
- {
- public TagAddedToPost(Guid id, string tagName) : base(id)
- {
- TagName = tagName;
- }
-
- public string TagName { get; set; }
- }
- }