API_Finshark/Dtos/Stock/UpdateStockRequestDto.cs
Marc Wieland da8f1f8ba3 Init
2025-09-26 08:51:10 +02:00

21 lines
520 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace api.Dtos.Stock
{
public class UpdateStockRequestDto
{
public string Symbol { get; set; } = string.Empty;
public string CompanyName { get; set; } = string.Empty;
public decimal Purchase { get; set; }
public decimal LastDiv { get; set; }
public string Industry { get; set; } = string.Empty;
public long MarketCap { get; set; }
}
}