/Source/Bifrost.Fakes/Events/SimpleEventWithOneProperty.cs

# · C# · 13 lines · 11 code · 2 blank · 0 comment · 0 complexity · 060c2dc72180cbf6cc83dc2cf10123d4 MD5 · raw file

  1. using System;
  2. using Bifrost.Events;
  3. namespace Bifrost.Fakes.Events
  4. {
  5. public class SimpleEventWithOneProperty : Event
  6. {
  7. public SimpleEventWithOneProperty() : base(Guid.NewGuid()) { }
  8. public SimpleEventWithOneProperty(Guid guid) : base(guid) {}
  9. public string SomeString { get; set; }
  10. }
  11. }