| 1234567891011121314151617181920212223 | 
							- using Caliburn.Micro.Core;
 
- using Prism.Mvvm;
 
- using System;
 
- using System.Collections.Generic;
 
- using System.Linq;
 
- using System.Text;
 
- using System.Threading.Tasks;
 
- namespace Venus_MainPages.ViewModels
 
- {
 
-     internal class WaferDialogViewModel : Screen
 
-     {
 
-         private string m_title;
 
-         public string Title { get { return m_title; } set { m_title = value;NotifyOfPropertyChange(()=> m_title); } }
 
-         public WaferDialogViewModel()
 
-         {
 
-         }
 
-     }
 
- }
 
 
  |