16 lines
313 B
C#
16 lines
313 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace TravelFirmDataModels.Models
|
|||
|
{
|
|||
|
public interface ITourModel : IId
|
|||
|
{
|
|||
|
int TourID { get; }
|
|||
|
string TourName { get; }
|
|||
|
string TourDescription { get; }
|
|||
|
}
|
|||
|
}
|