PIAPS_CW/Contracts/ViewModels/SupplyDocViewModel.cs

15 lines
297 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.ViewModels
{
public class SupplyDocViewModel
{
public Guid Id { get; set; }
public string Name { get; set; } = string.Empty;
}
}