Files
laatzen/LaaProductionWeb/LaaProduction.Personalization/Repositories/Interfaces/ISoftwareRepository.cs
T
2023-06-15 17:01:02 +02:00

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);
}
}