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
+15
View File
@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DbusSmsForward.SMSModel
{
public class SmsCodeModel
{
public bool HasCode { get; set; }=false;
public string CodeFrom { get; set; }=string.Empty;
public string CodeValue { get; set; } = string.Empty;
}
}