Migrated stuff. Started new domain system

This commit is contained in:
Marcel Baumgartner
2023-02-27 17:44:22 +01:00
parent 361eddb71b
commit 8b37514ff6
22 changed files with 1778 additions and 373 deletions

View File

@@ -0,0 +1,14 @@
using CloudFlare.Client.Enumerators;
namespace Moonlight.App.Models.Misc;
public class DnsRecord
{
public string Name { get; set; }
public string Content { get; set; }
public DnsRecordType Type { get; set; }
public string Id { get; set; }
public bool Proxied { get; set; }
public int Priority { get; set; }
public int Ttl { get; set; }
}