chore: initial commit

This commit is contained in:
Matthias Langhard
2021-04-12 13:54:09 +02:00
commit 2a2527f0da
64 changed files with 12106 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System.Text.Json.Serialization;
namespace Novaloop.BexioApi.Shared.Models
{
public class BexioBaseModel
{
[JsonPropertyName("id")]
public int Id { get; set; }
[JsonPropertyName("nr")]
public string Nr { get; set; }
}
}

View File

@@ -0,0 +1,16 @@
using Newtonsoft.Json;
namespace Novaloop.BexioApi.Shared.Models
{
public class BexioSearchParameter
{
[JsonProperty("field")]
public string Field { get; set; }
[JsonProperty("value")]
public string Value { get; set; }
[JsonProperty("criteria")]
public string Criteria { get; set; }
}
}