This commit is contained in:
2025-07-13 17:51:52 -04:00
parent 6cd44579e2
commit d4514805e9
33 changed files with 1295 additions and 80 deletions

View File

@ -0,0 +1,12 @@
//
// ListableItem.swift
// Workouts
//
// Created by rzen on 7/13/25 at 10:40AM.
//
// Copyright 2025 Rouslan Zenetl. All Rights Reserved.
//
protocol ListableItem {
var name: String { get set }
}