-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormConfig.cs
More file actions
35 lines (34 loc) · 849 Bytes
/
Copy pathFormConfig.cs
File metadata and controls
35 lines (34 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Power.RGY.Public.Models
{
//Widget Menu,MenuWidget
public class Widget {
public Guid Id { get; set; }
public String Name { get; set; }
public String HtmlPath { get; set; }
public Guid? OpenFormId{get;set;}
}
public class MenuWidget
{
public Guid MenuId { get; set; }
public Guid WidgetId { get; set; }
}
public class FormConfig
{
public Config config=new Config();
}
public class Config
{
public string keyword { get; set; }
public Guid? openformid { get; set; }
}
public class MainMenu
{
public Guid Id { get; set; }
public Guid ParentId { get; set; }
public string Name { get; set; }
}
}