重写Job实现方式

This commit is contained in:
2023-05-28 23:42:43 +08:00
parent f8df2fe468
commit 7c3f039911
21 changed files with 732 additions and 227 deletions
+18
View File
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hua.DDNS.Models;
public class DnsRecord
{
public string Id { get; set; }
public string Ip { get; set; }
public string Host { get; set; }
public string SubDomain { get; set; }
public string Domain { get; set; }
public string TTL { get; set; }
public string RecordType { get; set; }
}