12 lines
326 B
C#
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; }
|
|
}
|
|
}
|