Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

DnsZoneStatusDbo.cs 226B

1234567891011
  1. using System.Collections.Generic;
  2. namespace SiteStatus.Dbo
  3. {
  4. public class DnsZoneStatusDbo
  5. {
  6. public string Zone { get; set; }
  7. public IList<DnsZoneServerStatusDbo> ServerStatus { get; set; }
  8. }
  9. }