Skip to content

Instantly share code, notes, and snippets.

@vmandic
Created October 16, 2018 18:59
Show Gist options
  • Select an option

  • Save vmandic/8f7e1fada9be6ef7823663dd34ccc4ad to your computer and use it in GitHub Desktop.

Select an option

Save vmandic/8f7e1fada9be6ef7823663dd34ccc4ad to your computer and use it in GitHub Desktop.
meds-processor, p2, s1
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