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