示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ForumTopicPostAllOf"/> class.
 /// </summary>
 /// <param name="id">id.</param>
 /// <param name="number">number.</param>
 /// <param name="createdAt">createdAt.</param>
 /// <param name="createdBy">createdBy.</param>
 /// <param name="body">body.</param>
 /// <param name="signature">signature.</param>
 public ForumTopicPostAllOf(int id = default(int), int number = default(int), DateTime createdAt = default(DateTime), ForumTopicPostCreatedBy createdBy = default(ForumTopicPostCreatedBy), string body = default(string), string signature = default(string))
 {
     this.Id        = id;
     this.Number    = number;
     this.CreatedAt = createdAt;
     this.CreatedBy = createdBy;
     this.Body      = body;
     this.Signature = signature;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ForumTopicPost"/> class.
 /// </summary>
 /// <param name="id">id.</param>
 /// <param name="number">number.</param>
 /// <param name="createdAt">createdAt.</param>
 /// <param name="createdBy">createdBy.</param>
 /// <param name="body">body.</param>
 /// <param name="signature">signature.</param>
 public ForumTopicPost(int id = default(int), int number = default(int), DateTime createdAt = default(DateTime), ForumTopicPostCreatedBy createdBy = default(ForumTopicPostCreatedBy), string body = default(string), string signature = default(string)) : base()
 {
 }