13 lines
218 B
C#
13 lines
218 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace LeanEngineApp.LeanEngine {
|
|||
|
public class LeanEngine {
|
|||
|
private Dictionary<string, object> dict;
|
|||
|
|
|||
|
public LeanEngine() {
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|