Template
11 lines
227 B
C#
11 lines
227 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Strata.ContinuousImprovement.Api.Test.Integration.Info
|
|
{
|
|
public class CostDriver
|
|
{
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
}
|
|
}
|