-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from hekkaaa/dev
- Loading branch information
Showing
13 changed files
with
196 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
WhoisObserver/Services/Model/ClientModel/RuCenterHostnameModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
namespace WhoisObserver.Services.Model.ClientModel | ||
{ | ||
public class RuCenterHostnameModel | ||
{ | ||
public string domain { get; set; } | ||
public string nserver { get; set; } | ||
public string state { get; set; } | ||
public string org { get; set; } | ||
public string registrar { get; set; } | ||
public string admincontact { get; set; } | ||
public string created { get; set; } | ||
public string paidtill { get; set; } | ||
public string freedate { get; set; } | ||
public string source { get; set; } | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...rvices/Model/ClientModel/RuCenterModel.cs → ...del/ClientModel/RuCenterIpAddressModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
WhoisObserver/Services/Model/InputModel/RuCenterListFormatterInputModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace WhoisObserver.Services.Model.InputModel | ||
{ | ||
public class RuCenterListFormatterInputModel | ||
{ | ||
public string name { get; set; } | ||
public string value { get; set; } | ||
} | ||
} |
5 changes: 4 additions & 1 deletion
5
WhoisObserver/Services/Model/InputModel/RuCenterListInputModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
namespace WhoisObserver.Services.Model.InputModel | ||
using System.Collections.Generic; | ||
|
||
namespace WhoisObserver.Services.Model.InputModel | ||
{ | ||
public class RuCenterListInputModel | ||
{ | ||
public string registry { get; set; } | ||
public string html { get; set; } | ||
public List<RuCenterListFormatterInputModel> formatted { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
namespace WhoisObserver.Services.Model | ||
{ | ||
/// <summary> | ||
/// List of available servers available for operation | ||
/// </summary> | ||
public enum ServersClientFamily | ||
{ | ||
IpApi = 1, | ||
RuCenter, | ||
TestClient, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.