Setting up source code for Avalonia port.
This commit is contained in:
parent
27e6c97712
commit
8110fe420e
53 changed files with 991 additions and 58 deletions
19
src.4.7/HistoryItem.cs
Normal file
19
src.4.7/HistoryItem.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue