8045e98fa0
Create libraries. Add: models in TravelFirmDataModels
16 lines
317 B
C#
16 lines
317 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TravelFirmDataModels.Models
|
|
{
|
|
public interface IPlaceModel : IId
|
|
{
|
|
int PlaceID { get; }
|
|
string PlaceName { get; }
|
|
string PlaceDescription { get; }
|
|
}
|
|
}
|