10 lines
324 B
C#
10 lines
324 B
C#
namespace ListmonkIntegration.Models
|
|
{
|
|
public class ListmonkSettings
|
|
{
|
|
public string BaseUrl { get; set; } = "http://localhost:9000";
|
|
public string Username { get; set; } = "listmonk";
|
|
public string Password { get; set; } = "listmonk";
|
|
public string? ApiToken { get; set; }
|
|
}
|
|
} |