Skip to content

Instantly share code, notes, and snippets.

@trnktms
Created September 27, 2023 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trnktms/577739e303d2902cebb77be1ef0ce744 to your computer and use it in GitHub Desktop.
Save trnktms/577739e303d2902cebb77be1ef0ce744 to your computer and use it in GitHub Desktop.
public class ExtendedApiContentResponse : ApiContentResponse, IApiContentResponse
{
public ExtendedApiContentResponse(
Guid id,
string name,
string contentType,
DateTime createDate,
DateTime updateDate,
IApiContentRoute route,
IDictionary<string, object?> properties,
IDictionary<string, IApiContentRoute> cultures,
IDictionary<string, object?> system)
: base(id, name, contentType, createDate, updateDate, route, properties, cultures)
{
System = system;
}
[JsonPropertyOrder(0)]
public IDictionary<string, object?> System { get; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment