mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-23 15:27:03 -04:00
11 lines
249 B
C#
11 lines
249 B
C#
using WowUp.Common.Enums;
|
|
using WowUp.WPF.Entities;
|
|
|
|
namespace WowUp.WPF.Repositories.Contracts
|
|
{
|
|
public interface IAddonRepository : IDataStore<Addon>
|
|
{
|
|
Addon GetByExternalId(string externalId, WowClientType clientType);
|
|
}
|
|
}
|