mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-27 18:47:55 +00:00
10 lines
190 B
C#
10 lines
190 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MtApi.Responses
|
|
{
|
|
internal class CopyRatesResponse: ResponseBase
|
|
{
|
|
public List<MqlRates> Rates { get; set; }
|
|
}
|
|
}
|