17 lines
337 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BarberShopDataModels
{
public interface IAppointmentModel : IId
{
int ClientId { get; }
int EmployeeId { get; }
int ServiceId { get; }
DateTime Time { get; }
}
}