PIAPS_CW/Contracts/SearchModels/SupplyDocSearchModel.cs

16 lines
331 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
public class SupplyDocSearchModel
{
public Guid? Id { get; set; }
public string? Name { get; set; }
public Guid? SupplyId { get; set; }
}
}