Skip to content

Instantly share code, notes, and snippets.

View mohammadf69's full-sized avatar
💭
I may be slow to respond.

Mohammad mohammadf69

💭
I may be slow to respond.
View GitHub Profile
@mohammadf69
mohammadf69 / ValidationResult.cs
Created November 30, 2025 15:15 — forked from electricessence/ValidationResult.cs
ValidationResult Example.
using System;
public struct ValidationResult
{
public readonly bool IsValid;
public readonly string Message;
public ValidationResult(bool isValid, string message)
{
IsValid = isValid;
@mohammadf69
mohammadf69 / ValidationResult.cs
Created November 30, 2025 15:15 — forked from electricessence/ValidationResult.cs
ValidationResult Example.
using System;
public struct ValidationResult
{
public readonly bool IsValid;
public readonly string Message;
public ValidationResult(bool isValid, string message)
{
IsValid = isValid;