Skip to content
This repository was archived by the owner on Feb 12, 2019. It is now read-only.

Commit 4fc8e0c

Browse files
committed
changed Build entity to have a BuildType property instead a BuildTypeId one
1 parent a6e64f7 commit 4fc8e0c

File tree

1 file changed

+23
-23
lines changed
  • src/TeamCitySharp/DomainEntities

1 file changed

+23
-23
lines changed
Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
using System;
22

3-
namespace TeamCitySharp.DomainEntities
4-
{
5-
public class Build
6-
{
7-
public string Id { get; set; }
8-
public string Number { get; set; }
9-
public string Status { get; set; }
10-
public string BuildTypeId { get; set; }
11-
public string Href { get; set; }
12-
public string WebUrl { get; set; }
13-
public string StatusText { get; set; }
3+
namespace TeamCitySharp.DomainEntities
4+
{
5+
public class Build
6+
{
7+
public string Id { get; set; }
8+
public string Number { get; set; }
9+
public string Status { get; set; }
10+
public BuildConfig BuildType { get; set; }
11+
public string Href { get; set; }
12+
public string WebUrl { get; set; }
13+
public string StatusText { get; set; }
1414
public DateTime StartDate { get; set; }
15-
public DateTime FinishDate { get; set; }
16-
17-
public BuildConfig BuildConfig { get; set; }
18-
public Agent Agent { get; set;}
19-
public ChangeWrapper Changes { get; set; }
20-
21-
public override string ToString()
22-
{
23-
return Number;
24-
}
25-
26-
}
15+
public DateTime FinishDate { get; set; }
16+
17+
public BuildConfig BuildConfig { get; set; }
18+
public Agent Agent { get; set;}
19+
public ChangeWrapper Changes { get; set; }
20+
21+
public override string ToString()
22+
{
23+
return Number;
24+
}
25+
26+
}
2727
}

0 commit comments

Comments
 (0)