// *** WARNING: this file was generated by test. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Threading.Tasks; using Pulumi.Serialization; namespace Pulumi.Example.Inputs { /// /// A test for namespaces (mod main) /// public sealed class TypArgs : Pulumi.ResourceArgs { [Input("mod1")] public Input? Mod1 { get; set; } [Input("mod2")] public Input? Mod2 { get; set; } [Input("val")] public Input? Val { get; set; } public TypArgs() { Val = "mod main"; } } }