Files
2025-04-20 20:16:55 +03:30

15 lines
351 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.Checkout;
public class MainViewModel
{
public List<CheckoutViewModel> MainList { get; set; }
public string WorkshopSearch { get; set; }
public bool IsSysManager { get; set; }
}