Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

14 lines
405B

  1. namespace Campaign_Tracker.Server.Municipalities;
  2. public sealed record MunicipalityProfileSaveResult(
  3. bool Saved,
  4. string? Error,
  5. MunicipalityProfile? Profile)
  6. {
  7. public static MunicipalityProfileSaveResult Success(MunicipalityProfile profile) =>
  8. new(true, null, profile);
  9. public static MunicipalityProfileSaveResult Failure(string error) =>
  10. new(false, error, null);
  11. }

Powered by TurnKey Linux.