forked from ddrilling/AsbCloudServer
11 lines
204 B
C#
11 lines
204 B
C#
|
using System.Collections.Generic;
|
|||
|
using AsbCloudDb.Model;
|
|||
|
|
|||
|
namespace AsbCloudApp.Services
|
|||
|
{
|
|||
|
public interface ISaubDataCache
|
|||
|
{
|
|||
|
Dictionary<int, List<DataSaubBase>> GetSaubData();
|
|||
|
}
|
|||
|
}
|