You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
442 B
27 lines
442 B
package model |
|
|
|
// Mail def. |
|
type Mail struct { |
|
ToAddress []*MailAddress |
|
Subject string |
|
Body string |
|
} |
|
|
|
// MailAddress def. |
|
type MailAddress struct { |
|
Address string |
|
Name string |
|
} |
|
|
|
// MailData def. |
|
type MailData struct { |
|
UserName string |
|
SourceBranch string |
|
TargetBranch string |
|
Title string |
|
Description string |
|
URL string |
|
Info string |
|
PipelineStatus string |
|
PipeStatus string |
|
}
|
|
|