2022-12-11 22:03:53 +01:00

8 lines
120 B
C#

namespace Connected.Data.Schema
{
public interface ISchemaService
{
Task Synchronize(List<Type>? entities);
}
}