どのように私はこのC#のモデルを定義するために活字体インターフェイスを実装する必要があります。TypeScriptのC#辞書?
public class PageModel
{
public long Id { get; set; }
public string Name { get; set; }
public IDictionary<string, FieldModel> Fields { get; set; }
}
public class FieldModel
{
public long Id { get; set; }
public string Name { get; set; }
public string Type { get; set; }
public string DataType { get; set; }
public string DefaultValue { get; set; }
}
重複http://stackoverflow.com/questions/15877362/declare-and-initialize-a-dictionary-in-typescript – Kalten