16 lines
410 B
C#
16 lines
410 B
C#
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();
|
|
}
|
|
}
|