Dreamine.Web 1.0.0.0
WPF와 Blazor를 한 코드 흐름으로 연결하고 반복적인 MVVM 코드를 줄이는 오픈소스 FullKit 공식 웹 애플리케이션입니다.
로딩중...
검색중...
일치하는것 없음
LibraryInfo.cs
이 파일의 문서화 페이지로 가기
1namespace DreamineWeb.Models;
2
11public sealed class LibraryInfo
12{
21 public string Id { get; set; } = string.Empty;
30 public string Name { get; set; } = string.Empty;
39 public string Description { get; set; } = string.Empty;
48 public string? DescriptionEn { get; set; } // 영문 설명 (없으면 Description 사용)
57 public string Category { get; set; } = string.Empty;
66 public string Status { get; set; } = "stable"; // stable | beta | wip
75 public string Version { get; set; } = "1.0.0";
84 public string? NuGetId { get; set; }
93 public string? RepoUrl { get; set; }
102 public string? XmlDocPath { get; set; } // 빌드 출력 .xml 경로
111 public string? SourceProjectPath { get; set; } // 원본 .csproj 경로
120 public string? TargetFramework { get; set; }
129 public string[] Dependencies { get; set; } = [];
138 public string[] Tags { get; set; } = [];
147 public int SortOrder { get; set; }
156 public bool IsVisible { get; set; } = true;
165 public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
166}