From 912d59e4b0b46dfb8b75133d556c547ea4310d33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Harrtell?= Date: Tue, 21 Mar 2017 18:48:29 +0100 Subject: [PATCH] Add comments --- Saule/ApiResource.cs | 9 +++++++++ 1 file changed, 9 insertions(+) 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; } ///