-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #853 from LittleFish-233/master
Isthereanydeal迁移到新的api上,添加Vginsights数据源,销量和拥有人数取平均
- Loading branch information
Showing
4 changed files
with
155 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
CnGalWebSite/CnGalWebSite.DataModel/ViewModel/Stores/VginsightsDataModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace CnGalWebSite.DataModel.ViewModel.Stores | ||
{ | ||
public class VginsightsDataModel | ||
{ | ||
public double price { get; set; } | ||
public double price_final { get; set; } | ||
public double rating { get; set; } | ||
public int reviews { get; set; } | ||
public int reviews_positive { get; set; } | ||
public int reviews_negative { get; set; } | ||
public int units_sold_vgi { get; set; } | ||
public string revenue_vgi { get; set; } | ||
public bool isReleased { get; set; } | ||
} | ||
} |