PIbd-21_Anisin_R.S._CourseW.../TravelAgency/TravelAgencyDataModels/Models/IExcursionModel.cs

18 lines
337 B
C#
Raw Normal View History

2024-04-27 23:49:22 +04:00
namespace TravelAgencyDataModels.Models
{
public interface IExcursionModel : IId
{
string ExcursionName { get; }
string ExcursionDescription { get; }
double Price { get; }
int UserId { get; }
int PlaceId { get; }
2024-04-27 23:49:22 +04:00
Dictionary<int, ITourModel> ExcursionTours { get; }
}
}