Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public class BatchOfLogEvents
  2. {
  3. public BatchOfLogEvents(IEnumerable<LogEvent> logEvents)
  4. {
  5. LogEvents = logEvents.ToArray();
  6. }
  7.  
  8. public IReadOnlyCollection<LogEvent> LogEvents { get; }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement