2024-09-12 04:17:34 +00:00
|
|
|
|
using System.Collections.Generic;
|
2024-06-03 18:26:03 +00:00
|
|
|
|
|
2025-02-10 02:13:46 +00:00
|
|
|
|
namespace DDD.Interfaces
|
2024-06-03 18:26:03 +00:00
|
|
|
|
{
|
|
|
|
|
public interface IDataContainer<T>
|
|
|
|
|
{
|
2024-09-12 07:36:24 +00:00
|
|
|
|
List<SerializableKeyValuePair<T>> GetSerializedDataList();
|
|
|
|
|
void SetSerializedDataList(List<SerializableKeyValuePair<T>> data);
|
2024-06-03 18:26:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|