OptionDialogModel.cs 403 B

123456789101112131415
  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 OptionDialogModel
  8. {
  9. public string PopupName { get; set; }
  10. public string HeaderText { get; set; }
  11. public string Content { get; set; }
  12. public List<OptionDialogItemModel> OptionItems { get; set; }
  13. }
  14. }