030
This commit is contained in:
14
Dtsod/V30/DtsodSerializableAttribute.cs
Normal file
14
Dtsod/V30/DtsodSerializableAttribute.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DTLib.Dtsod
|
||||
{
|
||||
public class DtsodSerializableAttribute : Attribute
|
||||
{
|
||||
public DtsodVersion Version;
|
||||
public DtsodSerializableAttribute(DtsodVersion ver) => Version=ver;
|
||||
}
|
||||
}
|
||||
23
Dtsod/V30/DtsodV30.cs
Normal file
23
Dtsod/V30/DtsodV30.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DTLib.Dtsod
|
||||
{
|
||||
static public class DtsodV30
|
||||
{
|
||||
/*
|
||||
public static DtsodV30 FromObject(object target)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public T ToObject<T>()
|
||||
{
|
||||
|
||||
}
|
||||
*/
|
||||
}
|
||||
}
|
||||
9
Dtsod/V30/DtsodVersion.cs
Normal file
9
Dtsod/V30/DtsodVersion.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace DTLib.Dtsod
|
||||
{
|
||||
public enum DtsodVersion : byte
|
||||
{
|
||||
V21 = 21,
|
||||
V22 = 22,
|
||||
V30 = 30
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user