Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
Fix property casing
Browse files Browse the repository at this point in the history
  • Loading branch information
chkeita committed Apr 11, 2022
1 parent d891a02 commit 69e7a0f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/ApiService/ApiService/OneFuzzTypes/Model.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ PoolName PoolName
);

public record TaskContainers(
ContainerType type,
Container name
ContainerType Type,
Container Name
);
public record TaskConfig(
Guid JobId,
Expand All @@ -179,7 +179,7 @@ public record TaskConfig(
List<TaskContainers> Containers,
Dictionary<string, string> Tags,
List<TaskDebugFlag> Debug,
bool? colocate
bool? Colocate
);

public record Authentication(
Expand All @@ -192,12 +192,12 @@ string PrivateKey
public record TaskEventSummary(
DateTimeOffset? Timestamp,
string EventData,
string eventType
string EventType
);


public record NodeAssignment(
Guid nodeId,
Guid NodeId,
Guid? ScalesetId,
NodeTaskState State
);
Expand All @@ -214,9 +214,9 @@ public record Task(
Authentication? Auth,
DateTimeOffset? Heartbeat,
DateTimeOffset? EndTime,
UserInfo? user_info) : EntityBase()
UserInfo? UserInfo) : EntityBase()
{
List<TaskEventSummary> events { get; set; } = new List<TaskEventSummary>();
List<NodeAssignment> nodes { get; set; } = new List<NodeAssignment>();
List<TaskEventSummary> Events { get; set; } = new List<TaskEventSummary>();
List<NodeAssignment> Nodes { get; set; } = new List<NodeAssignment>();

}

0 comments on commit 69e7a0f

Please sign in to comment.