MyBookmark/Modules.Library.Domain/Gateways/ICommonPropertiesGateway.cs
2024-09-04 23:08:56 +03:00

5 lines
194 B
C#

using Modules.Library.Domain.Entities.MediaContent.CommonProperties;
namespace Modules.Library.Domain.Gateways;
public interface ICommonPropertiesGateway : IRepository<CommonProperties> { }