Template
chore: deploy initial code base
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Strata.ContinuousImprovement.Api.Test.Integration.Info
|
||||
{
|
||||
public class User
|
||||
{
|
||||
[JsonPropertyName("userGuid")]
|
||||
public string UserGuid { get; set; }
|
||||
|
||||
[JsonPropertyName("nameFull")]
|
||||
public string NameFull { get; set; }
|
||||
}
|
||||
|
||||
public class CostLeader : User
|
||||
{
|
||||
}
|
||||
|
||||
public class ExecutiveSponsor : User
|
||||
{
|
||||
}
|
||||
|
||||
public class Owner : User
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user