From 7b98466db2c48640e7fa94b3b89af86770851ecf Mon Sep 17 00:00:00 2001 From: Tim Young Date: Wed, 2 Aug 2017 11:44:22 -0500 Subject: [PATCH] update comments --- EduNetworkBuilder/PersonClass.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/EduNetworkBuilder/PersonClass.cs b/EduNetworkBuilder/PersonClass.cs index bffba2f..a231643 100644 --- a/EduNetworkBuilder/PersonClass.cs +++ b/EduNetworkBuilder/PersonClass.cs @@ -18,6 +18,9 @@ namespace EduNetworkBuilder /// The username of the person. Will be used as a filename. Cannot be changed once it is set /// public string UserName { get { return _UserName; } } + /// + /// The filename, without the path, of the file. UserName + ".enbu" + /// public string FileName { get { return UserName + ".enbu"; } } ///