예제 #1
0
파일: Page.cs 프로젝트: kjmtks/LMS7
 public Page(ALMS.App.Models.Entities.Lecture lecture, string path, string branch)
 {
     Lecture = lecture;
     Path    = path;
     Branch  = branch;
     if (string.IsNullOrWhiteSpace(Path))
     {
         // TODO
         Path = "index.md";
     }
     else
     {
         Path = Regex.Replace(Path, "/$", "");
     }
 }