using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace GreenTree.Nachtragsmanagement.Web.Models.Global { public class YesNoDialogModel { public string PopupName { get; set; } public string YesFunction { get; set; } public string YesButtonName { get; set; } public string NoFunction { get; set; } public string NoButtonName { get; set; } public string HeaderText { get; set; } public string Content { get; set; } } }