OSDN Git Service

PostClass.CreatedAtの型をDateTimeUtcに変更
[opentween/open-tween.git] / OpenTween / UpdateDialog.cs
index 8b4d8bc..bfa9c54 100644 (file)
@@ -40,14 +40,14 @@ namespace OpenTween
     {
         public string SummaryText
         {
-            get { return this.LabelSummary.Text; }
-            set { this.LabelSummary.Text = value; }
+            get => this.LabelSummary.Text;
+            set => this.LabelSummary.Text = value;
         }
 
         public string DetailsText
         {
-            get { return this.TextDetail.Text; }
-            set { this.TextDetail.Text = value; }
+            get => this.TextDetail.Text;
+            set => this.TextDetail.Text = value;
         }
 
         public UpdateDialog()