21 lines
433 B
C#
21 lines
433 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ZooDataModels.Models
|
|
{
|
|
public interface IRouteReserveModel : IId
|
|
{
|
|
/// <summary>
|
|
/// Id маршрута
|
|
/// </summary>
|
|
public int RouteId { get; }
|
|
/// /// <summary>
|
|
/// Id заповедника
|
|
/// </summary>
|
|
public int ReserveId { get; }
|
|
}
|
|
}
|