10 lines
157 B
C#
10 lines
157 B
C#
using System;
|
|
|
|
namespace Unity.Cloud.Collaborate.Views.Adapters
|
|
{
|
|
internal interface IAdapterObserver
|
|
{
|
|
void NotifyDataSetChanged();
|
|
}
|
|
}
|