Skip to content

Commit

Permalink
Make fields public
Browse files Browse the repository at this point in the history
  • Loading branch information
gestrich committed Jul 18, 2023
1 parent e06f5a3 commit 4bd8a9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/JiraSwift/Jira Models/Issue.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ public struct Issue : Codable {

public struct Fields : Codable {

let epic: String?
public let epic: String?
public var summary: String
var fixVersions: [FixVersion]?
public var fixVersions: [FixVersion]?
public let assignee: Assignee?
public var description : String?
public let status: IssueStatus
Expand Down

0 comments on commit 4bd8a9a

Please sign in to comment.