using System; namespace Pinwheel { public class AwardContext { public IAwardService AwardService { get; set; } public User User { get; set; } public DateTime? Timestamp { get; set; } public AwardContext() { Timestamp = DateTime.Now; } } }