Dreamine.Web 1.0.0.0
WPF와 Blazor를 한 코드 흐름으로 연결하고 반복적인 MVVM 코드를 줄이는 오픈소스 FullKit 공식 웹 애플리케이션입니다.
로딩중...
검색중...
일치하는것 없음
SiteSettings.cs
이 파일의 문서화 페이지로 가기
1namespace DreamineWeb.Models;
2
11public class SiteSettings
12{
21 public string Title { get; set; } = "Dreamine";
30 public string Description { get; set; } = "Modular Architecture for Real Applications";
39 public string IconUrl { get; set; } = "";
48 public string GitHubUrl { get; set; } = "https://github.com/CodeMaru-Dreamine";
49
50 // Open Graph / SNS 공유
59 public string OgTitle { get; set; } = ""; // 비면 Title 사용
68 public string OgDescription { get; set; } = ""; // 비면 Description 사용
77 public string OgImageUrl { get; set; } = "/img/og-dreamine.png";
86 public string OgSiteName { get; set; } = "Dreamine";
95 public string OgUrl { get; set; } = "https://dreamine.kr/";
104 public string TwitterCard { get; set; } = "summary_large_image";
105}