cleanup folders (#792)

* unify folders

* move dep and target outside
This commit is contained in:
Boshi Lian
2022-03-07 10:06:55 -08:00
committed by GitHub
parent c11e205a01
commit 01b2aa832c
48 changed files with 98 additions and 132 deletions

View File

@@ -1,5 +1,5 @@
using k8s.Models;
using Newtonsoft.Json;
using System.Text.Json.Serialization;
namespace customResource
{
@@ -21,13 +21,13 @@ namespace customResource
public class CResourceSpec
{
[JsonProperty(PropertyName = "cityName")]
[JsonPropertyName("cityName")]
public string CityName { get; set; }
}
public class CResourceStatus : V1Status
{
[JsonProperty(PropertyName = "temperature", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("temperature")]
public string Temperature { get; set; }
}
}