4d7e0f4125
Synthaxe is similar to 'fetch' command with '-i' and '--all' options... + Add an option `--with-labels` to the 'fetch' command to get TFS labels when fetching TFS changesets
15 lines
379 B
C#
15 lines
379 B
C#
namespace Sep.Git.Tfs.Core
|
|
{
|
|
public class TfsLabel
|
|
{
|
|
public int Id { get; set; }
|
|
public int ChangesetId { get; set; }
|
|
public string Name { get; set; }
|
|
public string Comment { get; set; }
|
|
public string Owner { get; set; }
|
|
public System.DateTime Date { get; set; }
|
|
public bool IsTransBranch { get; set; }
|
|
}
|
|
|
|
}
|