get invoice view

This commit is contained in:
mmrbnjd
2024-05-14 14:58:25 +03:30
parent b208c71bd7
commit b44500d9ab
9 changed files with 330 additions and 14 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class ForCustomerSearch
{
public int ID { get; set; }
public string CustomerName { get; set; }
}
}