You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
//
|
|
// DataManager.swift
|
|
// Calculator
|
|
//
|
|
// Created by etudiant on 20/06/2023.
|
|
//
|
|
|
|
import Foundation
|
|
public protocol DataManager {
|
|
func loadUEs() -> [UE]
|
|
func loadUeStage_Proj() -> [UE]
|
|
func save(ues: [UE])
|
|
}
|