Files
predavanja/MVC-SimpleCRUD-Layered/MVC-SimpleCRUD-Layered.Application/People/SavePersonResult.cs
Boris Milašinović 1415005b82 MVC (layered variant)
2026-04-26 13:40:03 +02:00

15 lines
395 B
C#

namespace MVC_SimpleCRUD_Layered.Application.People;
public record SavePersonResult(bool Success, string? PersonName, string? ErrorMessage)
{
public static SavePersonResult Ok(string personName)
{
return new SavePersonResult(true, personName, null);
}
public static SavePersonResult Failed(string errorMessage)
{
return new SavePersonResult(false, null, errorMessage);
}
}