From c8893f56b11541163f2634ce2afe32a85a9313dc Mon Sep 17 00:00:00 2001 From: Casey Hofland Date: Fri, 3 Nov 2017 14:23:52 +0100 Subject: [PATCH] Update Guard.cs --- CsharpCity/Models/Guard.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CsharpCity/Models/Guard.cs b/CsharpCity/Models/Guard.cs index e78d896..26bba89 100644 --- a/CsharpCity/Models/Guard.cs +++ b/CsharpCity/Models/Guard.cs @@ -18,5 +18,9 @@ public Guard() { _key = new Key("Kluis sleutel"); } + + public Key Key() { + return _key; + } } }