Expense.Designer.cs
3,006 bytes
| 1 | //------------------------------------------------------------------------------ |
|---|---|
| 2 | // <auto-generated> |
| 3 | // This code was generated by a tool. |
| 4 | // |
| 5 | // Changes to this file may cause incorrect behavior and will be lost if |
| 6 | // the code is regenerated. |
| 7 | // </auto-generated> |
| 8 | //------------------------------------------------------------------------------ |
| 9 | |
| 10 | namespace App.Resources.Domain { |
| 11 | using System; |
| 12 | |
| 13 | |
| 14 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] |
| 15 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] |
| 16 | [System.Runtime.CompilerServices.CompilerGeneratedAttribute()] |
| 17 | public class Expense { |
| 18 | |
| 19 | private static System.Resources.ResourceManager resourceMan; |
| 20 | |
| 21 | private static System.Globalization.CultureInfo resourceCulture; |
| 22 | |
| 23 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] |
| 24 | internal Expense() { |
| 25 | } |
| 26 | |
| 27 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] |
| 28 | public static System.Resources.ResourceManager ResourceManager { |
| 29 | get { |
| 30 | if (object.Equals(null, resourceMan)) { |
| 31 | System.Resources.ResourceManager temp = new System.Resources.ResourceManager("App.Resources.Domain.Expense", typeof(Expense).Assembly); |
| 32 | resourceMan = temp; |
| 33 | } |
| 34 | return resourceMan; |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] |
| 39 | public static System.Globalization.CultureInfo Culture { |
| 40 | get { |
| 41 | return resourceCulture; |
| 42 | } |
| 43 | set { |
| 44 | resourceCulture = value; |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | public static string Amount { |
| 49 | get { |
| 50 | return ResourceManager.GetString("Amount", resourceCulture); |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | public static string Description { |
| 55 | get { |
| 56 | return ResourceManager.GetString("Description", resourceCulture); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | public static string ExpenseDate { |
| 61 | get { |
| 62 | return ResourceManager.GetString("ExpenseDate", resourceCulture); |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | public static string SplitMethod { |
| 67 | get { |
| 68 | return ResourceManager.GetString("SplitMethod", resourceCulture); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | public static string PaidBy { |
| 73 | get { |
| 74 | return ResourceManager.GetString("PaidBy", resourceCulture); |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | public static string Category { |
| 79 | get { |
| 80 | return ResourceManager.GetString("Category", resourceCulture); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | public static string Currency { |
| 85 | get { |
| 86 | return ResourceManager.GetString("Currency", resourceCulture); |
| 87 | } |
| 88 | } |
| 89 | } |
| 90 | } |
| 91 | |