using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Control { internal class Class4 { int hour; int minuts; public int Hour { set { hour = value; } } public int Minuts { set { if (value < 60) { minuts = value; } else { Console.WriteLine("Cтолько минут быть не может!"); } } } public string getTime { get { return "Вы ввели " + hour + " ч. и " + minuts + " мин."; } } } }