pc 앱 배포,다운로드 기능
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package com.goldenchart.dto;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
public class DesktopAppBuildStatusDto {
|
||||
/** Jenkins 연동 활성 여부 */
|
||||
private boolean jenkinsEnabled;
|
||||
/** 현재 빌드 진행 중 */
|
||||
private boolean building;
|
||||
/** idle | queued | building | success | failure | disabled | error */
|
||||
private String status;
|
||||
private Integer buildNumber;
|
||||
private String message;
|
||||
private String buildUrl;
|
||||
private Long startedAtMs;
|
||||
}
|
||||
Reference in New Issue
Block a user