using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model.ViewModel { public class TispContentGroupItemCreateViewModel : BaseViewModel { /// <summary> /// 分组编号 /// </summary> public Guid G_ContentGroupCode { get; set; } /// <summary> /// 内容编号 /// </summary> public Guid G_ContentCode { get; set; } } }