using System; using System.Collections.Generic; using System.Text; namespace FreeNameLibrary { /// /// What's in a name: a cached domainname whois check result /// public class CachedDomainWhoisResult { protected int id; protected DateTime created; protected string domainName; protected string data; public int Id { get { return id; } set { id = value; } } public DateTime Created { get { return created; } set { created = value; } } public string DomainName { get { return domainName; } set { domainName = value; } } public string Data { get { return data; } set { data = value; } } } }