using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace GreenTree.Nachtragsmanagement.Web.Models.Global { public class EditEntityCommentModel { public int EntityId { get; set; } public string EntityType { get; set; } public string Comment { get; set; } } }