Y3S1-Cloud_Systems_DevOps/ThAmCo-Stock/ThAmCo.Stock/Models/Dto/ProductDto.cs
2020-06-09 21:21:37 +01:00

15 lines
304 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ThAmCo.Stock.Models.Dto
{
public class ProductDto
{
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
}
}