first commit
This commit is contained in:
16
Models/API/MethodParameter.cs
Normal file
16
Models/API/MethodParameter.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace MotoVaultPro.Models
|
||||
{
|
||||
public class MethodParameter
|
||||
{
|
||||
public int Id { get; set; }
|
||||
[JsonConverter(typeof(FromDateOptional))]
|
||||
public string StartDate { get; set; }
|
||||
[JsonConverter(typeof(FromDateOptional))]
|
||||
public string EndDate { get; set; }
|
||||
public string Tags { get; set; }
|
||||
public bool UseMPG { get; set; }
|
||||
public bool UseUKMPG { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user