mirror of https://github.com/pulumi/pulumi.git
14 lines
372 B
C#
14 lines
372 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Pulumi
|
|
{
|
|
|
|
public class ComponentResource : Resource
|
|
{
|
|
public ComponentResource(string type, string name, Dictionary<string, object> properties = null, ResourceOptions options = default(ResourceOptions))
|
|
{
|
|
RegisterAsync(type, name, false, properties, options);
|
|
}
|
|
}
|
|
} |