You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
729 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace YoutubeBot._5sim.Objects
{
// Number from 5sim
public class Number
{
public int id;
/// <summary>The phone-number</summary>
public string phone;
/// <summary>The recieved sms (Activation only has 1 sms)</summary>
public List<Sms> sms;
public DateTime created_at;
public DateTime expires;
public bool forwarding;
public string forwarding_number;
public string product;
public float price;
public string carrier;
public string country;
public string status;
public Number()
{
}
}
}