3 Commits
1.0.0 ... 1.0.1

Author SHA1 Message Date
Railz
f0c01d73f9 Merge branch 'master' of https://gitea.Railduction.eu/Railz/5sim_Api 2020-02-25 00:39:06 +01:00
Railz
bcac5f84c1 Fixed object number not having phone-number after buy-action 2020-02-25 00:38:48 +01:00
Alexander B
3b95105a81 Added Readme 2020-02-24 21:25:44 +01:00
3 changed files with 14 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework> <TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>_5sim_api</RootNamespace> <RootNamespace>_5sim_api</RootNamespace>
<Version>1.0.1</Version>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@@ -10,7 +10,7 @@ namespace YoutubeBot._5sim.Objects
public int id; public int id;
/// <summary>The phone-number</summary> /// <summary>The phone-number</summary>
public string number; public string phone;
/// <summary>The recieved sms (Activation only has 1 sms)</summary> /// <summary>The recieved sms (Activation only has 1 sms)</summary>
public List<Sms> sms; public List<Sms> sms;

12
README.md Normal file
View File

@@ -0,0 +1,12 @@
# 5sim.net Api Library
This is a library to use the official 5sim Api.
## Installation
Import the .dll into your project.
## Usage
Create a new `_5sim.Api`.
Within the constructor-method you pass your api-token from 5sim.
## How to use it
I am mostly following the official Api from 5sim,
therefore you should have a look at their Api: https://5sim.net/docs/api_en.txt?68dc38df57 (24.02.2020)