12 lines
386 B
C#
12 lines
386 B
C#
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; } = [];
|
|
}
|