Initial commit

This commit is contained in:
2025-11-15 20:06:01 -05:00
commit 6d50386eba
24 changed files with 1192 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
namespace ChrisKaczor.MinifluxClient;
[AttributeUsage(AttributeTargets.Enum | AttributeTargets.Field)]
internal class QueryParameterNameAttribute(string name) : Attribute
{
public string Name { get; } = name;
}