Files
git-tfs/GitTfs/Core/TfsWorkitem.cs
T
Philippe Miossec b5fb9b5b5b Add a note on the commit to keep trace of the workitems
Manage workitems when fetching changesets with adding a note with the workitems
displaying Id, title and a link to the workitem
2013-01-04 13:38:46 +01:00

10 lines
255 B
C#

namespace Sep.Git.Tfs.Core
{
public class TfsWorkitem : ITfsWorkitem
{
public int Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string Url { get; set; }
}
}