using System; using System.Collections.Generic; using System.Text; namespace Blog3000.Shared { public class Revision { public DateTime? ChangedAt { get; set; } public string Author { get; set; } public string Description { get; set; } } }