Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bjornharrtell committed Mar 21, 2017
1 parent 632f4b0 commit 912d59e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Saule/ApiResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,19 @@ protected ApiResource()
/// </summary>
public string ResourceType { get; private set; }

/// <summary>
/// The defined attributes of this resource.
/// </summary>
public IEnumerable<ResourceAttribute> Attributes => _attributes;

/// <summary>
/// The defined relationships of this resource.
/// </summary>
public IEnumerable<ResourceRelationship> Relationships => _relationships;

/// <summary>
/// The defined identifier of this resource.
/// </summary>
public string IdProperty { get; private set; }

/// <summary>
Expand Down

0 comments on commit 912d59e

Please sign in to comment.