18 lines
389 B
C#
18 lines
389 B
C#
|
|
using CMSMicroservice.Protobuf.Protos.Package;
|
||
|
|
using FMSMicroservice.Protobuf.Protos.FileInfo;
|
||
|
|
|
||
|
|
namespace BackOffice.BFF.Application.Common.Interfaces;
|
||
|
|
|
||
|
|
public interface IApplicationContractContext
|
||
|
|
{
|
||
|
|
#region FM
|
||
|
|
|
||
|
|
FileInfoContract.FileInfoContractClient FileInfos { get; }
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
#region CMS
|
||
|
|
PackageContract.PackageContractClient Packages { get; }
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
}
|