Add project files.

This commit is contained in:
2025-07-06 17:26:05 +02:00
parent 8edf3708d8
commit 0f7207523a
42 changed files with 1657 additions and 0 deletions

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FactoryPattern.Samples;
public interface IUserData
{
string? Name { get; set; }
}
public class UserData : IUserData
{
public string? Name { get; set; }
}