kreta/Kreta.Core/IUgyfelszolgalatConfig.cs
2024-03-13 00:33:46 +01:00

12 lines
326 B
C#

namespace Kreta.Core
{
public interface IUgyfelszolgalatConfig
{
string Url { get; }
string ProjectKey { get; }
string CommaSeparatedGroupIdFilters { get; }
bool IsFileUploadEnabled { get; }
string JiraServiceApiUrl { get; }
string JiraServiceApiKey { get; }
}
}