16 lines
394 B
C#
16 lines
394 B
C#
global using System;
|
|
global using System.Collections;
|
|
global using System.Collections.Generic;
|
|
global using System.Linq;
|
|
global using System.Text;
|
|
global using DTLib.Extensions;
|
|
|
|
namespace DTLib.Dtsod;
|
|
|
|
public interface IDtsod
|
|
{
|
|
public DtsodVersion Version { get; }
|
|
public IDictionary<string, dynamic> ToDictionary();
|
|
public dynamic this[string s] { get; set; }
|
|
}
|