Migrated stuff. Started new domain system
This commit is contained in:
14
Moonlight/App/Models/Misc/DnsRecord.cs
Normal file
14
Moonlight/App/Models/Misc/DnsRecord.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user