21 lines
433 B
C#
Raw Normal View History

2023-04-09 01:27:52 +04:00
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; }
}
}