YesNoDialogModel.cs 527 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace GreenTree.Nachtragsmanagement.Web.Models.Global
  6. {
  7. public class YesNoDialogModel
  8. {
  9. public string PopupName { get; set; }
  10. public string YesFunction { get; set; }
  11. public string YesButtonName { get; set; }
  12. public string NoFunction { get; set; }
  13. public string NoButtonName { get; set; }
  14. public string HeaderText { get; set; }
  15. public string Content { get; set; }
  16. }
  17. }