31 lines
654 B
C#
31 lines
654 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Sep.Git.Tfs.Core
|
|
{
|
|
public class LogEntry
|
|
{
|
|
public LogEntry()
|
|
{
|
|
CommitParents = new List<string>();
|
|
}
|
|
|
|
public string AuthorName { get; set; }
|
|
public string Tree { get; set; }
|
|
|
|
public IList<string> CommitParents { get; private set; }
|
|
|
|
public long ChangesetId { get; set; }
|
|
|
|
public string Log { get; set; }
|
|
|
|
public string AuthorEmail { get; set; }
|
|
|
|
public DateTime Date { get; set; }
|
|
|
|
public string CommitterName { get; set; }
|
|
|
|
public string CommitterEmail { get; set; }
|
|
}
|
|
}
|