Skip to content

Commit

Permalink
Merge pull request #422 from orestesgaolin/patch-2
Browse files Browse the repository at this point in the history
fix: make PolarDiskSpaceData properties public
  • Loading branch information
samulimaa authored Dec 4, 2023
2 parents ead9a40 + f509c29 commit c68c75b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Copyright © 2023 Polar. All rights reserved.

public struct PolarDiskSpaceData {
let totalSpace: UInt64
let freeSpace: UInt64
public let totalSpace: UInt64
public let freeSpace: UInt64

static func fromProto(proto: Protocol_PbPFtpDiskSpaceResult) -> PolarDiskSpaceData {
return PolarDiskSpaceData(
Expand Down

0 comments on commit c68c75b

Please sign in to comment.