Template
chore: deploy initial code base
This commit is contained in:
+25
@@ -0,0 +1,25 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Strata.ContinuousImprovement.Api.Test.Integration.Info
|
||||
{
|
||||
public class InitiativeDetailColumnInfo
|
||||
{
|
||||
[JsonPropertyName("index")]
|
||||
public int Index { get; set; }
|
||||
|
||||
[JsonPropertyName("name")]
|
||||
public string Name { get; set; }
|
||||
|
||||
[JsonPropertyName("heading")]
|
||||
public string Heading { get; set; }
|
||||
|
||||
[JsonPropertyName("isLocked")]
|
||||
public bool IsLocked { get; set; }
|
||||
|
||||
[JsonPropertyName("isHidden")]
|
||||
public bool IsHidden { get; set; }
|
||||
|
||||
[JsonPropertyName("initiativeRollupColumnId")]
|
||||
public int? InitiativeRollupColumnId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user