9 lines
113 B
TypeScript
9 lines
113 B
TypeScript
export interface Rule{
|
|
id:number;
|
|
name:string;
|
|
condtion:CondtionTree
|
|
}
|
|
|
|
export interface CondtionTree{
|
|
|
|
} |