до тестов

This commit is contained in:
2025-04-13 14:32:05 +04:00
parent 47c8badaa0
commit 59aaa5cb04
23 changed files with 990 additions and 29 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MagicCarpetContracts.ViewModels;
public class TourAgencyViewModel
{
public required string AgencyId { get; set; }
public required string TourId { get; set; }
public int Count { get; set; }
}