16 lines
307 B
C#
16 lines
307 B
C#
|
namespace TravelAgencyDataModels.Models
|
|||
|
{
|
|||
|
public interface IExcursionModel : IId
|
|||
|
{
|
|||
|
string ExcursionName { get; }
|
|||
|
|
|||
|
string ExcursionDescription { get; }
|
|||
|
|
|||
|
double Price { get; }
|
|||
|
|
|||
|
int UserId { get; }
|
|||
|
|
|||
|
Dictionary<int, ITourModel> ExcursionTours { get; }
|
|||
|
}
|
|||
|
}
|