MissnationBlazor/Mango.Interfaces/Profiles/IProfile.cs

10 lines
258 B
C#

using AyCode.Interfaces.Addresses;
using AyCode.Interfaces.Profiles;
using Mango.Interfaces.Addresses;
namespace Mango.Interfaces.Profiles;
public interface IProfile<TAddress> : IAcProfile<TAddress>, IProfileDto where TAddress : class, IAddress
{
}