12 lines
No EOL
218 B
C#
12 lines
No EOL
218 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
using System;
|
|
|
|
namespace PhoenixLib.DAL
|
|
{
|
|
public interface IGenericAsyncUuidRepository<T> : IGenericAsyncRepository<T, Guid> where T : class, IUuidDto
|
|
{
|
|
}
|
|
} |