Session.cs

10 lines | 202 B Blame History Raw Download
namespace CodeEditorApi
{
    public class Session
    {
        public Guid Id { get; set; }
        public int NumberOfChanges { get; set; }
        public DateTime Timestamp { get; set; }
    }
}