Dreamine.MVVM.Generators 1.0.13
Dreamine.MVVM.Generators 프로젝트의 API와 구성 요소를 제공합니다.
로딩중...
검색중...
일치하는것 없음
EntryCandidateModel.cs
이 파일의 문서화 페이지로 가기
1using Microsoft.CodeAnalysis;
2using Microsoft.CodeAnalysis.CSharp.Syntax;
3
5{
14 internal sealed class EntryCandidateModel
15 {
24 public INamedTypeSymbol ClassSymbol { get; }
25
34 public ClassDeclarationSyntax ClassDeclaration { get; }
35
44 public string Namespace { get; }
45
54 public string ClassName { get; }
55
64 public bool IsPartial { get; }
65
74 public bool IsApplicationDerived { get; }
75
132 public EntryCandidateModel(
133 INamedTypeSymbol classSymbol,
134 ClassDeclarationSyntax classDeclaration,
135 string @namespace,
136 string className,
137 bool isPartial,
138 bool isApplicationDerived)
139 {
140 ClassSymbol = classSymbol;
141 ClassDeclaration = classDeclaration;
142 Namespace = @namespace;
143 ClassName = className;
144 IsPartial = isPartial;
145 IsApplicationDerived = isApplicationDerived;
146 }
147 }
148}