Skip to content
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.

Commit

Permalink
Merge pull request #230 from aspriddell/enum-xmldoc
Browse files Browse the repository at this point in the history
Add more XMLdocs to enum members
  • Loading branch information
aspriddell authored Apr 25, 2021
2 parents 95f47a4 + 1566165 commit ac07b7f
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions DragonFruit.Six.Api/Enums/LookupMethod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

namespace DragonFruit.Six.Api.Enums
{
/// <summary>
/// Describes how the server should interpret the search queries provided in the request
/// </summary>
public enum LookupMethod
{
/// <summary>
Expand Down
3 changes: 3 additions & 0 deletions DragonFruit.Six.Api/Enums/MatchResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

namespace DragonFruit.Six.Api.Enums
{
/// <summary>
/// Describes the outcome of a match for a player
/// </summary>
public enum MatchResult
{
Unknown = 0,
Expand Down
6 changes: 6 additions & 0 deletions DragonFruit.Six.Api/Enums/OperatorType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@

namespace DragonFruit.Six.Api.Enums
{
/// <summary>
/// Describes the side the operator is on.
/// </summary>
/// <remarks>
/// Used in the Dragon6 Datasets
/// </remarks>
[Flags]
public enum OperatorType
{
Expand Down
3 changes: 3 additions & 0 deletions DragonFruit.Six.Api/Enums/ServerStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

namespace DragonFruit.Six.Api.Enums
{
/// <summary>
/// Describes the current state of the Rainbow Six infrastructure
/// </summary>
public enum ServerStatus
{
/// <summary>
Expand Down
3 changes: 3 additions & 0 deletions DragonFruit.Six.Api/Enums/WeaponType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

namespace DragonFruit.Six.Api.Enums
{
/// <summary>
/// The categories a weapon can fall under
/// </summary>
public enum WeaponType
{
[Description("Assault Rifle")]
Expand Down

0 comments on commit ac07b7f

Please sign in to comment.