Computer_Hardware_Store/HardwareShop/HardwareShopContracts/ViewModels/CommentViewModel.cs

16 lines
410 B
C#
Raw Normal View History

using FoodOrdersDataModels.Models;
using HardwareShopDataModels.Models;
using System.ComponentModel;
namespace FoodOrdersContracts.ViewModels
{
public class CommentViewModel : ICommentModel
{
public string Text => throw new NotImplementedException();
public int BuildID => throw new NotImplementedException();
public int Id => throw new NotImplementedException();
}
}