Files
xSaherElmAiApi/AI/Interfaces/Entities/IXAiProjectRepository.cs
T
2026-04-24 00:33:50 +03:30

9 lines
210 B
C#

using System;
using xAiApi.AI.Models.Entities;
using xDataService.Interfaces;
namespace xAiApi.AI.Interfaces.Entities
{
public interface IXAiProjectRepository : IXBaseRepository<XAiProject, Guid>
{ }
}