DTLib/DTLib.Dtsod/IDtsod.cs
2023-06-11 08:00:25 +06:00

17 lines
442 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;
global using static DTLib.Logging.InternalLog;
namespace DTLib.Dtsod;
public interface IDtsod
{
public DtsodVersion Version { get; }
public IDictionary<string, dynamic> ToDictionary();
public dynamic this[string s] { get; set; }
}