Dreamine.Web 1.0.0.0
WPF와 Blazor를 한 코드 흐름으로 연결하고 반복적인 MVVM 코드를 줄이는 오픈소스 FullKit 공식 웹 애플리케이션입니다.
로딩중...
검색중...
일치하는것 없음
DreamineOptions.cs
이 파일의 문서화 페이지로 가기
1using System.IO;
2
3namespace DreamineWeb.Models;
4
13public sealed class DreamineOptions
14{
23 public string DataPath { get; set; } = string.Empty;
32 public string SuperAdminPassword { get; set; } = "v1.600000.1oy6GjdnZFCRZpxUY6R4tQ==.1r45CdqBw/2U22r0bF9KwzdIfyCVkkRt/VcoAg19LrQ=";
41 public string SiteTitle { get; set; } = "Dreamine";
50 public string SiteDescription { get; set; } = "Modular Architecture for Real Applications";
59 public string GitHubOrgUrl { get; set; } = "https://github.com/CodeMaru-Dreamine";
60
69 public string LibrarySourceRoot { get; set; } = string.Empty;
70
79 public string ResolvedDataPath =>
80 string.IsNullOrWhiteSpace(DataPath)
81 ? Path.Combine(AppContext.BaseDirectory, "App_Data")
82 : DataPath;
83}