2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-06-13 22:48:42 +00:00
Files
esiur-dotnet/Tests/RPC/Client/Model/Esiur/Esiur.Tests.RPC.EsiurServer.Kind.g.cs
T
2026-06-08 23:25:49 +03:00

25 lines
439 B
C#

using System;
using Esiur.Resource;
using Esiur.Core;
using Esiur.Data;
using Esiur.Protocol;
namespace Esiur.Tests.RPC.EsiurServer
{
[Remote("Esiur.Tests.RPC.EsiurServer.Kind", "localhost")]
[Export]
public enum Kind
{
Bool = 1,
Bytes = 7,
DateTime = 8,
Decimal = 5,
Double = 4,
Guid = 9,
Int64 = 2,
Null = 0,
String = 6,
UInt64 = 3
}
}