2024-03-25 20:20:39 +04:00

16 lines
298 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelCompanyDataModels.Models
{
public interface IDeliveryModel
{
int ShopId { get; }
int TravelId { get; }
int Count { get; }
}
}