19 lines
328 B
C#
19 lines
328 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AdvancedCalculator
|
|
{
|
|
public class HistoryItem
|
|
{
|
|
#region Properties
|
|
|
|
public string Input { get; set; }
|
|
|
|
public string Output { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
}
|