mirror of
https://github.com/ckaczor/JenkinsStatusWindow.git
synced 2026-01-14 09:59:51 -05:00
10 lines
204 B
C#
10 lines
204 B
C#
namespace JenkinsStatusWindow
|
|
{
|
|
public class JenkinsProject
|
|
{
|
|
public string Name { get; set; }
|
|
public string Url { get; set; }
|
|
public bool Enabled { get; set; }
|
|
}
|
|
}
|