9 lines
210 B
C#
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>
|
|
{ }
|
|
} |