mirror of
https://github.com/ckaczor/JenkinsStatusWindow.git
synced 2026-01-13 17:22:55 -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; }
|
|
}
|
|
}
|