mirror of
https://github.com/vknet/vk.git
synced 2026-07-10 00:18:28 +00:00
35 lines
No EOL
689 B
C#
35 lines
No EOL
689 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Days
|
|
/// </summary>
|
|
[Serializable]
|
|
public class LeadDays
|
|
{
|
|
/// <summary>
|
|
/// Amount of spent votes
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "spent")]
|
|
public int? Spent { get; set; }
|
|
|
|
/// <summary>
|
|
/// Impressions number
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "impressions")]
|
|
public int? Impressions { get; set; }
|
|
|
|
/// <summary>
|
|
/// Completed offers number
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "completed")]
|
|
public int? Completed { get; set; }
|
|
|
|
/// <summary>
|
|
/// Started offers number
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "started")]
|
|
public int? Started { get; set; }
|
|
} |