/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

  1. using System;
  2. using Bifrost.Events;
  3. namespace Bifrost.Samples.Blog.Events.Posts
  4. {
  5. public class TagAddedToPost : Event
  6. {
  7. public TagAddedToPost(Guid id, string tagName) : base(id)
  8. {
  9. TagName = tagName;
  10. }
  11. public string TagName { get; set; }
  12. }
  13. }