mirror of
https://github.com/xtool-org/xtool.git
synced 2026-02-04 11:53:30 +01:00
32 lines
829 B
Swift
32 lines
829 B
Swift
//
|
|
// DeveloperServiceAppGroup.swift
|
|
// Supercharge
|
|
//
|
|
// Created by Kabir Oberai on 29/07/19.
|
|
// Copyright © 2019 Kabir Oberai. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct DeveloperServicesAppGroup: Decodable, Sendable {
|
|
public struct ID: RawRepresentable, Decodable, Sendable {
|
|
public let rawValue: String
|
|
public init(rawValue: String) { self.rawValue = rawValue }
|
|
}
|
|
public let id: ID
|
|
|
|
public let name: String
|
|
|
|
public struct GroupID: RawRepresentable, Hashable, Codable, Sendable {
|
|
public let rawValue: String
|
|
public init(rawValue: String) { self.rawValue = rawValue }
|
|
}
|
|
public let groupID: GroupID
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
case id = "applicationGroup"
|
|
case name
|
|
case groupID = "identifier"
|
|
}
|
|
}
|