Dreamine.MVVM.Attributes 1.0.7
Dreamine.MVVM.Attributes 프로젝트의 API와 구성 요소를 제공합니다.
로딩중...
검색중...
일치하는것 없음
DreaminePropertyAttribute.cs
이 파일의 문서화 페이지로 가기
1using System;
2
4{
30 [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = false)]
31 public sealed class DreaminePropertyAttribute : Attribute
32 {
49 public string? PropertyName { get; }
50
67 public DreaminePropertyAttribute(string? propertyName = null)
68 {
69 PropertyName = propertyName;
70 }
71 }
72}
DreaminePropertyAttribute(string? propertyName=null)
DreaminePropertyAttribute 클래스의 새 인스턴스를 초기화합니다.
string? PropertyName
생성될 프로퍼티 이름을 가져옵니다.