Blame view
App/model/CongTruong.swift
200 Bytes
|
d774f0637
|
1 2 3 4 5 6 7 8 9 10 11 12 |
//
// Created by Philip Tran on 2/25/17.
//
import Foundation
class CongTruong {
var tenCtuong: String?
var tenCty: String?
var daChup: Int?, conLai: Int?
var mucChups: [MucChup]?
}
|