Created
October 16, 2018 18:59
-
-
Save vmandic/8f7e1fada9be6ef7823663dd34ccc4ad to your computer and use it in GitHub Desktop.
meds-processor, p2, s1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace MedsProcessor.Common.Models | |
| { | |
| public sealed class AppPathsInfo | |
| { | |
| public AppPathsInfo(string appRootPath) | |
| { | |
| if (appRootPath == null) | |
| throw new ArgumentNullException(nameof(appRootPath)); | |
| ApplicationRootPath = appRootPath; | |
| } | |
| public string ApplicationRootPath { get; private set; } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment