Files
Check/MagicCarpetProject/MagicCarpetContracts/ViewModels/TourSuppliesViewModel.cs
2025-04-13 14:32:05 +04:00

15 lines
338 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MagicCarpetContracts.ViewModels;
public class TourSuppliesViewModel
{
public required string SuppliesId { get; set; }
public required string TourId { get; set; }
public int Count { get; set; }
}