1
0
Fork 0

make CreateIssueCommentOption and EditIssueCommentOption fields pub

This commit is contained in:
Cyborus 2023-11-19 15:25:03 -05:00
parent 80d04a2621
commit 39707c0054
No known key found for this signature in database

View file

@ -338,10 +338,10 @@ pub struct EditIssueOption {
#[derive(serde::Serialize, Debug, PartialEq, Default)]
pub struct CreateIssueCommentOption {
body: String,
pub body: String,
}
#[derive(serde::Serialize, Debug, PartialEq, Default)]
pub struct EditIssueCommentOption {
body: String,
pub body: String,
}