Proyectos de Subversion Iphone Microlearning - Inconcert

Rev

Autoría | Ultima modificación | Ver Log |

//
//  SyncModel.swift
//  twogetskills
//
//  Created by Efrain Yanez Recanatini on 2/21/22.
//

import Foundation

struct SyncModel: Decodable, Identifiable {
    var id: Int
    var type: Int
    var data: String
    
    init() {
        self.id = 0
        self.type = 0
        self.data = ""
    }
    
    init(id : Int, type : Int, data : String) {
        self.id = id
        self.type = type
        self.data = data
    }
    
    
}