blog3000/Blog3000/Shared/Revision.cs

19 lines
291 B
C#

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; }
}
}