Files
designPatternGuru/DesignPatternGuru/AbstractFactory/Products/IAbstractProductA.cs

14 lines
246 B
C#
Raw Normal View History

2023-03-02 16:22:54 +09:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AbstractFactory.Products
{
internal interface IAbstractProductA
{
string UsefulFunctionA();
}
}