Added `StockAmount` To `User` Model (Database Update Required) Reworked `ChatHub` Command Names Removed Cache On User Info Endpoints
9 lines
182 B
C#
9 lines
182 B
C#
namespace qtc_api.Dtos.User
|
|
{
|
|
public class UserStockActionResultDto
|
|
{
|
|
public int StockAmount { get; set; }
|
|
public int CurrencyAmount { get; set; }
|
|
}
|
|
}
|