-
Notifications
You must be signed in to change notification settings - Fork 3
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 #19 from Star-Academy/feature/save-graph
Feature/save graph
- Loading branch information
Showing
50 changed files
with
2,428 additions
and
531 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace mohaymen_codestar_Team02.Dto; | ||
|
||
public class GetGraphDto | ||
{ | ||
public string databaseName; | ||
public string sourceEdgeIdentifierFieldName; | ||
public string destinationEdgeIdentifierFieldName; | ||
public string vertexIdentifierFieldName; | ||
} |
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,6 @@ | ||
namespace mohaymen_codestar_Team02.Dto.GraphDTO; | ||
|
||
public class DetailDto | ||
{ | ||
public Dictionary<string, string> AttributeValue { get; init; } | ||
} |
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,10 @@ | ||
using mohaymen_codestar_Team02.Models; | ||
|
||
namespace mohaymen_codestar_Team02.Dto.GraphDTO; | ||
|
||
public class DisplayGraphDto | ||
{ | ||
public List<Edge> Edges { get; init; } | ||
public List<Vertex> Vertices { get; init; } | ||
public string GraphName { get; set; } | ||
} |
Oops, something went wrong.