@@ -12,44 +12,44 @@ namespace DragonFlyTEST;
1212public partial class Product2
1313{
1414 [ StringField ( Required = true , Index = true , MaxLength = 1024 , ReferenceField = true , ListField = true , QueryField = true ) ]
15- private string ? _title ;
15+ public partial string ? Title { get ; set ; }
1616
1717 [ SlugField ( Index = true , QueryField = true , TargetField = nameof ( Title ) ) ]
18- private SlugField _slug ;
18+ public partial SlugField Slug { get ; set ; }
1919
2020 [ BoolField ( Index = true , QueryField = true ) ]
21- private bool ? _isActive ;
21+ public partial bool ? IsActive { get ; set ; }
2222
2323 [ IntegerField ( Index = true , QueryField = true ) ]
24- private long ? _quantity ;
24+ public partial long ? Quantity { get ; set ; }
2525
2626 [ FloatField ]
27- private double ? _quantity2 ;
27+ public partial double ? Quantity2 { get ; set ; }
2828
2929 [ BlockField ]
30- private BlockField _mainContent ;
30+ public partial BlockField MainContent { get ; set ; }
3131
3232 [ AssetField ( ShowPreview = true , Index = true , QueryField = true ) ]
33- private AssetField _image ;
33+ public partial AssetField Image { get ; set ; }
3434
3535 [ AssetField ( ShowPreview = true ) ]
36- private Asset _image2 ;
36+ public partial Asset Image2 { get ; set ; }
3737
3838 [ ReferenceField ]
39- private ReferenceField _customerA ;
39+ public partial ReferenceField CustomerA { get ; set ; }
4040
4141 [ ReferenceField ]
42- private ContentItem ? _customerB ;
42+ public partial ContentItem ? CustomerB { get ; set ; }
4343
4444 [ ReferenceField ]
45- private Customer ? _customerC ;
45+ public partial Customer ? CustomerC { get ; set ; }
4646
4747 [ GeolocationField ]
48- private GeolocationField _location ;
48+ public partial GeolocationField Location { get ; set ; }
4949
5050 [ TextField ]
51- private TextField _text ;
51+ public partial TextField Text { get ; set ; }
5252
5353 [ UrlField ]
54- private UrlField _url ;
54+ public partial UrlField Url { get ; set ; }
5555}
0 commit comments