SUBD_SushiBar/SushiBar/SushiBarDataModels/Models/IBuyerModel.cs

16 lines
288 B
C#
Raw Normal View History

2024-03-26 18:58:14 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarDataModels.Models
{
public interface IBuyerModel : IId
{
string BuyerName { get; }
DateTime? BuyerBirthDate { get; }
}
}