PIAPS_CW/DataModels/Models/ISupplyDoc.cs

16 lines
251 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataModels.Models
{
public interface ISupplyDoc : IId
{
string Name { get; }
Guid SupplyId { get; }
}
}