10 lines
264 B
C#
10 lines
264 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DDD.Interfaces
|
|
{
|
|
public interface IDataContainer<T>
|
|
{
|
|
List<SerializableKeyValuePair<T>> GetSerializedDataList();
|
|
void SetSerializedDataList(List<SerializableKeyValuePair<T>> data);
|
|
}
|
|
} |