Files
Gready_Poang/Common.Library/Interfaces/IMethodSharingService.cs
2025-10-11 08:15:33 +02:00

10 lines
180 B
C#

using System.Collections.ObjectModel;
namespace Common.Library
{
public interface IMethodSharingService<TEntity>
{
ObservableCollection<TEntity> Get();
}
}