// top comment /// Description: /// /// top annotation /// // This file is auto-generated, don't edit it. Thanks. using System; using System.Collections.Generic; using System.IO; using Tea; namespace Darabonba.Test.Models { /// Description: /// /// TestModel /// public class Test1 : TeaModel { /// Obsolete /// /// /// test desc /// /// check if is blank: /// true /// /// if can be null: /// true /// /// if is sensitive: /// true /// [NameInMap("test")] [Validation(Required=true)] [Obsolete] public string Test { get; set; } //model的test back comment /// /// test2 desc /// [NameInMap("test2")] [Validation(Required=true)] public string Test2 { get; set; } //model的test2 back comment } }