Skip to content

Commit

Permalink
now with more correctness
Browse files Browse the repository at this point in the history
  • Loading branch information
mrayburn committed Mar 23, 2012
1 parent 2b63983 commit a783455
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions CombatReader/EventLine.cs
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;

namespace CombatReader
{
public class EventLine
{
public DateTime eventTime { get; set; }
public string Source { get; set; }
public string Target { get; set; }
public string AbilityName { get; set; }
public string ResourceEvent { get; set; }
public string EffectName { get; set; }
public int Value { get; set; }
public int Threat { get; set; }
}
}

0 comments on commit a783455

Please sign in to comment.