diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 17:17:46 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 17:17:46 +0000 |
| commit | 0440c722a221b8068bbf388c1c0c51f0faff0451 (patch) | |
| tree | 169cbf90c50ff7961db82ecb606c50c2a45a1688 /Gestor.Model/Gestor.Model.Resources | |
| parent | 225aa1499e37faf9d38257caabbadc68d78b427e (diff) | |
| download | gestor-master.tar.gz gestor-master.zip | |
Diffstat (limited to 'Gestor.Model/Gestor.Model.Resources')
| -rw-r--r-- | Gestor.Model/Gestor.Model.Resources/Messages.cs | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.Resources/Messages.cs b/Gestor.Model/Gestor.Model.Resources/Messages.cs new file mode 100644 index 0000000..2c7eb6f --- /dev/null +++ b/Gestor.Model/Gestor.Model.Resources/Messages.cs @@ -0,0 +1,72 @@ +using System.CodeDom.Compiler; +using System.ComponentModel; +using System.Diagnostics; +using System.Globalization; +using System.Resources; +using System.Runtime.CompilerServices; + +namespace Gestor.Model.Resources; + +[GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "18.0.0.0")] +[DebuggerNonUserCode] +[CompilerGenerated] +public class Messages +{ + private static ResourceManager resourceMan; + + private static CultureInfo resourceCulture; + + [EditorBrowsable(EditorBrowsableState.Advanced)] + public static ResourceManager ResourceManager + { + get + { + if (resourceMan == null) + { + resourceMan = new ResourceManager("Gestor.Model.Resources.Messages", typeof(Messages).Assembly); + } + return resourceMan; + } + } + + [EditorBrowsable(EditorBrowsableState.Advanced)] + public static CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + + public static string BaixaInvalida => ResourceManager.GetString("BaixaInvalida", resourceCulture); + + public static string ContemEspacos => ResourceManager.GetString("ContemEspacos", resourceCulture); + + public static string DataInvalida => ResourceManager.GetString("DataInvalida", resourceCulture); + + public static string EmissaoInvalida => ResourceManager.GetString("EmissaoInvalida", resourceCulture); + + public static string Invalido => ResourceManager.GetString("Invalido", resourceCulture); + + public static string MaiorQueLimite => ResourceManager.GetString("MaiorQueLimite", resourceCulture); + + public static string NomeInvalido => ResourceManager.GetString("NomeInvalido", resourceCulture); + + public static string Obrigatorio => ResourceManager.GetString("Obrigatorio", resourceCulture); + + public static string ValorParcelaInvalido => ResourceManager.GetString("ValorParcelaInvalido", resourceCulture); + + public static string VencimentoMaior => ResourceManager.GetString("VencimentoMaior", resourceCulture); + + public static string VencimentoMenor => ResourceManager.GetString("VencimentoMenor", resourceCulture); + + public static string VencimentoParcela => ResourceManager.GetString("VencimentoParcela", resourceCulture); + + internal Messages() + { + } +} |