Files
git-tfs/GitTfs/Core/LogEntry.cs
T
Philippe Miossec 22fc8f91c0 refacto: use 'int' to handle changeset Ids
instead of 'long' to match what is done in the tfs api
2015-11-16 01:11:44 +01:00

29 lines
717 B
C#

using System;
using System.Collections.Generic;
using LibGit2Sharp;
namespace Sep.Git.Tfs.Core
{
public class LogEntry
{
public LogEntry()
{
CommitParents = new List<string>();
}
public string AuthorName { get; set; }
public string AuthorEmail { get; set; }
public string CommitterName { get; set; }
public string CommitterEmail { get; set; }
public DateTime Date { get; set; }
public string Log { get; set; }
public Tree Tree { get; set; }
public IList<string> CommitParents { get; private set; }
public int ChangesetId { get; set; }
public IGitTfsRemote Remote { get; set; }
}
}