10 lines
190 B
C#
10 lines
190 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BlueWater.Interfaces
|
|
{
|
|
public interface IDataContainer<T>
|
|
{
|
|
List<T> GetData();
|
|
void SetData(List<T> data);
|
|
}
|
|
} |