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"; } } ///