mirror of
https://github.com/eliasstepanik/AutoProxy.git
synced 2026-01-10 05:08:33 +00:00
11 lines
284 B
C#
11 lines
284 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DDNSUpdater.Models.Requests;
|
|
|
|
public class DynamicDnsResponse
|
|
{
|
|
public string BulkId { get; set; }
|
|
public string UpdateUrl { get; set; }
|
|
public List<string> Domains { get; set; }
|
|
public string Description { get; set; }
|
|
} |