mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-07-22 17:35:26 +00:00
Made DataEvent ctor public
This commit is contained in:
parent
98dad4a8ed
commit
45f3459f59
@ -25,7 +25,12 @@ namespace CryptoExchange.Net.Sockets
|
||||
/// </summary>
|
||||
public T Data { get; set; }
|
||||
|
||||
internal DataEvent(T data, DateTime timestamp)
|
||||
/// <summary>
|
||||
/// Ctor
|
||||
/// </summary>
|
||||
/// <param name="data"></param>
|
||||
/// <param name="timestamp"></param>
|
||||
public DataEvent(T data, DateTime timestamp)
|
||||
{
|
||||
Data = data;
|
||||
Timestamp = timestamp;
|
||||
|
Loading…
x
Reference in New Issue
Block a user