19 lines
425 B
C#
19 lines
425 B
C#
using RestaurantDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RestaurantContracts.BindingModels
|
|
{
|
|
public class ProviderBindingModel : IProviderModel
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public string Address { get; set; } = string.Empty;
|
|
|
|
public int Id { get; set; }
|
|
}
|
|
}
|