6 lines
93 B
C#
6 lines
93 B
C#
using System.Collections.Generic;
|
|
|
|
class FoodBox<T> where T : IEatable
|
|
{
|
|
List<T> food;
|
|
}
|