b5fb9b5b5b
Manage workitems when fetching changesets with adding a note with the workitems displaying Id, title and a link to the workitem
10 lines
255 B
C#
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; }
|
|
}
|
|
} |