18 lines
245 B
Swift
18 lines
245 B
Swift
//
|
|
// UserInfoVC.swift
|
|
// yinmeng-ios
|
|
//
|
|
// Created by MaiMang on 2024/2/25.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class UserInfoVC: BaseViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
view.backgroundColor = .lightGray
|
|
}
|
|
|
|
}
|