Catalog/imagecatalog/Services/TestService.cs

18 lines
263 B
C#
Raw Permalink Normal View History

2024-10-14 22:18:03 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ImageCatalog_2.Services
{
public interface ITestService
{
}
public class TestService : ITestService
{
}
}