Dreamine.Web 1.0.0.0
WPF와 Blazor를 한 코드 흐름으로 연결하고 반복적인 MVVM 코드를 줄이는 오픈소스 FullKit 공식 웹 애플리케이션입니다.
로딩중...
검색중...
일치하는것 없음
PlaygroundDemo.cs
이 파일의 문서화 페이지로 가기
1namespace DreamineWeb.Models;
2
11public sealed class PlaygroundDemo
12{
21 public string Id { get; set; } = string.Empty;
22
31 public string Title { get; set; } = string.Empty;
40 public string? TitleEn { get; set; }
49 public string Description { get; set; } = string.Empty;
58 public string? DescriptionEn { get; set; }
59
68 public int SortOrder { get; set; }
77 public bool IsVisible { get; set; } = true;
78
87 public string? NavLabel { get; set; }
88
89 // -- Platform code snippets ----------------------------
98 public string BlazorCode { get; set; } = string.Empty;
107 public string WpfCode { get; set; } = string.Empty;
116 public string WinFormsCode { get; set; } = string.Empty;
125 public string MauiCode { get; set; } = string.Empty;
134 public string VmCode { get; set; } = string.Empty;
135
136 // -- Running screen media paths ------------------------
145 public string WpfShot { get; set; } = string.Empty;
154 public string WinFormsShot { get; set; } = string.Empty;
163 public string MauiShot { get; set; } = string.Empty;
164
173 public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
174}