4 lines
49 B
Swift
4 lines
49 B
Swift
|
|
struct FoodBox<T: Eatable> {
|
||
|
|
var food: [T]
|
||
|
|
}
|