|
1 |
| -namespace MatthiWare.FinancialModelingPrep.Model.CompanyValuation |
| 1 | +using System.Text.Json.Serialization; |
| 2 | + |
| 3 | +namespace MatthiWare.FinancialModelingPrep.Model.CompanyValuation |
2 | 4 | {
|
3 | 5 | public class EnterpriseValueResponse
|
4 | 6 | {
|
5 |
| - public string symbol { get; set; } |
6 |
| - public string date { get; set; } |
7 |
| - public double stockPrice { get; set; } |
8 |
| - public long numberOfShares { get; set; } |
9 |
| - public double marketCapitalization { get; set; } |
10 |
| - public long minusCashAndCashEquivalents { get; set; } |
11 |
| - public long addTotalDebt { get; set; } |
12 |
| - public double enterpriseValue { get; set; } |
| 7 | + [JsonPropertyName("symbol")] |
| 8 | + public string Symbol { get; set; } |
| 9 | + |
| 10 | + [JsonPropertyName("date")] |
| 11 | + public string Date { get; set; } |
| 12 | + |
| 13 | + [JsonPropertyName("stockPrice")] |
| 14 | + public double StockPrice { get; set; } |
| 15 | + |
| 16 | + [JsonPropertyName("numberOfShares")] |
| 17 | + public long NumberOfShares { get; set; } |
| 18 | + |
| 19 | + [JsonPropertyName("marketCapitalization")] |
| 20 | + public double MarketCapitalization { get; set; } |
| 21 | + |
| 22 | + [JsonPropertyName("minusCashAndCashEquivalents")] |
| 23 | + public long MinusCashAndCashEquivalents { get; set; } |
| 24 | + |
| 25 | + [JsonPropertyName("addTotalDebt")] |
| 26 | + public long AddTotalDebt { get; set; } |
| 27 | + |
| 28 | + [JsonPropertyName("enterpriseValue")] |
| 29 | + public double EnterpriseValue { get; set; } |
13 | 30 | }
|
14 | 31 | }
|
0 commit comments