blob: b08816bdb7ffda4a19a48986edf3dfcbe8d644bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
//using System;
//namespace Google.GRPC.Examples.Math
//{
// // Messages in this file are placeholders for actual protobuf message classes
// // that will be generated from math.proto file.
//
// public class DivArgs
// {
// public long Dividend{ get; set; }
// public long Divisor { get; set; }
// }
//
// public class DivReply
// {
// public long Quotient { get; set; }
// public long Remainder { get; set; }
// }
//
// public class FibArgs
// {
// public long Limit { get; set; }
// }
//
// public class Number
// {
// public long Num { get; set; }
// }
//
// public class FibReply
// {
// public long Count { get; set; }
// }
//}
|