12 lines
268 B
C#
12 lines
268 B
C#
namespace LaaProduction.Personalization.Repositories.Interfaces
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
internal interface ISoftwareRepository
|
|
{
|
|
short AppId(string software);
|
|
|
|
IEnumerable<string> GetSoftwareFunctions(string token);
|
|
}
|
|
}
|