DialogViewModel.cs 344 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using MECF.Framework.UI.Client.ClientBase;
  7. namespace OpenSEMI.ClientBase
  8. {
  9. public class DialogViewModel<T> : BaseModel
  10. {
  11. public T DialogResult { get; set; }
  12. public bool IsCancel { get; set; }
  13. }
  14. }