PIBD-21_Lobashov_I_D_Travel.../TravelCompany/TravelCompanyBusinessLogic/OfficePackage/IDocument.cs

15 lines
305 B
C#
Raw Normal View History

2024-04-19 01:04:50 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelCompanyBusinessLogic.OfficePackage
{
public interface IDocument
{
public string FileName { get; set; }
public string Title { get; set; }
}
}