21 lines
422 B
C#
21 lines
422 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ZooDataModels.Models
|
|
{
|
|
public interface IRouteModel : IId
|
|
{
|
|
/// <summary>
|
|
/// Дата начала
|
|
/// </summary>
|
|
public DateTime DateStart { get; }
|
|
/// <summary>
|
|
/// Id клиента
|
|
/// </summary>
|
|
public int ClientId { get; }
|
|
}
|
|
}
|