-
Notifications
You must be signed in to change notification settings - Fork 356
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 #149 from bennycdr/main
Added GetDefaultCustomData to the public API.
- Loading branch information
Showing
15 changed files
with
340 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace OWSData.Models.Composites | ||
{ | ||
public class DefaultCustomDataDTO | ||
{ | ||
public string CustomFieldName { get; set; } | ||
public string FieldValue { 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using OWSData.Models.Tables; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace OWSData.Models.Composites | ||
{ | ||
public class DefaultCustomDataRows | ||
{ | ||
public List<DefaultCustomData> Rows { 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace OWSData.Models.Tables | ||
{ | ||
public partial class DefaultCustomData | ||
{ | ||
// public Guid CustomerGuid { get; set; } | ||
// public int DefaultCustomCharacterDataId { get; set; } | ||
// public int DefaultCharacterValuesId { get; set; } | ||
public string CustomFieldName { get; set; } | ||
public string FieldValue { 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
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
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,27 @@ | ||
namespace OWSPublicAPI.DTOs | ||
{ | ||
/// <summary> | ||
/// GetByNameDTO data transfer object | ||
/// </summary> | ||
/// <remarks> | ||
/// GetByNameDTO is data transfer object for GetByNameRequest | ||
/// </remarks> | ||
public class GetDefaultCustomrDataDTO | ||
{ | ||
/// <summary> | ||
/// UserSessionGUID Request Parameter | ||
/// </summary> | ||
/// <remarks> | ||
/// Contains the User Session GUID from the request | ||
/// </remarks> | ||
public string UserSessionGUID { get; set; } | ||
|
||
/// <summary> | ||
/// CharacterName Request Paramater | ||
/// </summary> | ||
/// <remarks> | ||
/// Contains the Character Name from the request | ||
/// </remarks> | ||
public string DefaultSetName { get; set; } | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.