Display update

This commit is contained in:
thermalthrottle
2021-03-19 10:58:04 +02:00
parent 701be834cf
commit d516d33a38
5 changed files with 127 additions and 14 deletions

View File

@@ -1,10 +1,16 @@
using System;
using Models.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace Display.Views
{
class CashierView
class CashierView : BaseView
{
public CashierView(User currentUser) : base(currentUser)
{
}
}
}