PIbd-22_Chernyshev_G.J._30_.../GarmentFactoryBusinessLogic/OfficePackage/IDocument.cs

15 lines
310 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GarmentFactoryBusinessLogic.OfficePackage
{
public interface IDocumentInfo
{
public string FileName { get; set; }
public string Title { get; set; }
}
}