using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Amazon.S3.Model { /// /// A container specifying the time value. /// public class ReplicationTimeValue { private int? minutes; /// /// Contains an integer specifying time in minutes. /// public int Minutes { get { return this.minutes ?? default(int); } set { this.minutes = value; } } internal bool IsSetMinutes() { return this.minutes.HasValue; } } }