Proyectos de Subversion Iphone Microlearning - Inconcert

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
//
2
//  SyncModel.swift
3
//  twogetskills
4
//
5
//  Created by Efrain Yanez Recanatini on 2/21/22.
6
//
7
 
8
import Foundation
9
 
10
struct SyncModel: Decodable, Identifiable {
11
    var id: Int
12
    var type: Int
13
    var data: String
14
 
15
    init() {
16
        self.id = 0
17
        self.type = 0
18
        self.data = ""
19
    }
20
 
21
    init(id : Int, type : Int, data : String) {
22
        self.id = id
23
        self.type = type
24
        self.data = data
25
    }
26
 
27
 
28
}