WorkflowEntity.swift 11 lignes · 292 octets
import Foundation

/// Room entity `workflows` (serverId is the primary key).
struct WorkflowEntity: Equatable {
    var serverId: String
    var nom: String = ""
    var description: String = ""
    var colonnesJson: String = "[]"
    var creePar: String = ""
    var createdAt: Int64 = 0
}