Files
designPatternGuru/DesignPatternGuru/AbstractFactory/Products/IAbstractProductA.cs
2023-03-02 16:22:54 +09:00

14 lines
246 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AbstractFactory.Products
{
internal interface IAbstractProductA
{
string UsefulFunctionA();
}
}