123456789101112131415161718192021222324252627282930 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace KdanCommon.Mixpanel.Data
- {
- public class ImportResult
- {
- [JsonProperty("code")]
- public int Code { get; set; }
- [JsonProperty("num_records_imported")]
- public int NumRecordsImported { get; set; }
- [JsonProperty("status")]
- public string Status { get; set; }
- }
- public class SetProfileResult
- {
- [JsonProperty("error")]
- public string Error { get; set; }
- [JsonProperty("status")]
- public int Status { get; set; }
- }
- }
|