diff options
author | 杨宇千 <crupest@outlook.com> | 2019-10-25 23:03:36 +0800 |
---|---|---|
committer | 杨宇千 <crupest@outlook.com> | 2019-10-25 23:03:36 +0800 |
commit | 181b53e270ff7c0558edec75b8b255d487e796c3 (patch) | |
tree | 5315d3339e3fcb43c22b0e39c761ab46d45f9b9c /Timeline/Resources/Services/UserDetailService.Designer.cs | |
parent | a175f8328d7a6c36464676d54fc50d03e64be0af (diff) | |
download | timeline-181b53e270ff7c0558edec75b8b255d487e796c3.tar.gz timeline-181b53e270ff7c0558edec75b8b255d487e796c3.tar.bz2 timeline-181b53e270ff7c0558edec75b8b255d487e796c3.zip |
Add user detail service.
Diffstat (limited to 'Timeline/Resources/Services/UserDetailService.Designer.cs')
-rw-r--r-- | Timeline/Resources/Services/UserDetailService.Designer.cs | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/Timeline/Resources/Services/UserDetailService.Designer.cs b/Timeline/Resources/Services/UserDetailService.Designer.cs new file mode 100644 index 00000000..2f586b36 --- /dev/null +++ b/Timeline/Resources/Services/UserDetailService.Designer.cs @@ -0,0 +1,99 @@ +//------------------------------------------------------------------------------
+// <auto-generated>
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+namespace Timeline.Resources.Services {
+ using System;
+
+
+ /// <summary>
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ /// </summary>
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class UserDetailService {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal UserDetailService() {
+ }
+
+ /// <summary>
+ /// Returns the cached ResourceManager instance used by this class.
+ /// </summary>
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Timeline.Resources.Services.UserDetailService", typeof(UserDetailService).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ /// <summary>
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ /// </summary>
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Length of nickname can't be bigger than 10..
+ /// </summary>
+ internal static string ExceptionNicknameTooLong {
+ get {
+ return ResourceManager.GetString("ExceptionNicknameTooLong", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to A user_details entity has been created. User id is {0}. Nickname is {1}..
+ /// </summary>
+ internal static string LogEntityNicknameCreate {
+ get {
+ return ResourceManager.GetString("LogEntityNicknameCreate", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Nickname of a user_details entity has been updated to a new value. User id is {0}. New value is {1}..
+ /// </summary>
+ internal static string LogEntityNicknameSetNotNull {
+ get {
+ return ResourceManager.GetString("LogEntityNicknameSetNotNull", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to Nickname of a user_details entity has been updated to null. User id is {0}..
+ /// </summary>
+ internal static string LogEntityNicknameSetToNull {
+ get {
+ return ResourceManager.GetString("LogEntityNicknameSetToNull", resourceCulture);
+ }
+ }
+ }
+}
|