blob: acc381a61d7a24ef3a67a0a66a42652c388a1142 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using Google.Protobuf;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.DataStore;
public static class ExtensionMethods
{
public static DataStoreProtoObject ToDataStoreProtoObject(IMessage message)
{
return DataStoreProtoObject.FromMessage(message);
}
}
|