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.
20 lines
393 B
C#
20 lines
393 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace YoutubeBot._5sim.Objects
|
|
{
|
|
/// <summary>
|
|
/// SMS received by a 5sim number
|
|
/// </summary>
|
|
public class Sms
|
|
{
|
|
public int id;
|
|
public DateTime created_at;
|
|
public DateTime date;
|
|
public string sender;
|
|
public string text;
|
|
public string code;
|
|
}
|
|
}
|