feat: publish dbussmsforward refactor

This commit is contained in:
2026-05-08 23:54:03 +08:00
commit 9f1ee9ffe6
77 changed files with 15585 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace DbusSmsForward.Models;
public sealed class AppCommand
{
public string Name { get; init; } = "run";
public bool PrintSampleConfig { get; init; }
public bool ValidateConfig { get; init; }
public string PhoneNumber { get; init; } = string.Empty;
public string Message { get; init; } = string.Empty;
public string[] EnabledChannels { get; init; } = [];
}