Prac2026_Email/ListmonkIntegration/Models/ListmonkSettings.cs
2026-07-15 17:17:03 +03:00

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