/Source/Bifrost.Fakes/Events/SimpleEventWithOneProperty.cs
# · C# · 13 lines · 11 code · 2 blank · 0 comment · 0 complexity · 060c2dc72180cbf6cc83dc2cf10123d4 MD5 · raw file
- using System;
- using Bifrost.Events;
-
- namespace Bifrost.Fakes.Events
- {
- public class SimpleEventWithOneProperty : Event
- {
- public SimpleEventWithOneProperty() : base(Guid.NewGuid()) { }
- public SimpleEventWithOneProperty(Guid guid) : base(guid) {}
-
- public string SomeString { get; set; }
- }
- }