diff --git a/Saule/ApiResource.cs b/Saule/ApiResource.cs index a9eb103..01b0e58 100644 --- a/Saule/ApiResource.cs +++ b/Saule/ApiResource.cs @@ -43,10 +43,19 @@ protected ApiResource() /// public string ResourceType { get; private set; } + /// + /// The defined attributes of this resource. + /// public IEnumerable Attributes => _attributes; + /// + /// The defined relationships of this resource. + /// public IEnumerable Relationships => _relationships; + /// + /// The defined identifier of this resource. + /// public string IdProperty { get; private set; } ///