Русский (Russian)
Appearance
STRUCT
Template
Contents
description
attributes
items
init(description:attributes:items:)
public struct Template: Codable, Equatable, Sendable
A scaffold template model.
description
public let description: String
Description of template
attributes
public let attributes: [Attribute]
Attributes to be passed to template
items
public let items: [Item]
Items to generate
init(description:attributes:items:)
public init(
description: String,
attributes: [Attribute] = [],
items: [Item] = []
)