Files
git-tfs/GitTfs/Core/TfsLabel.cs
T
Philippe Miossec 4d7e0f4125 Add a 'labels' command to get TFS labels of a branch
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
2012-12-15 13:45:04 +01:00

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