Payment and subscription notification

This commit is contained in:
2025-06-23 01:34:53 +08:00
parent 049a5c9b6f
commit feb612afcd
6 changed files with 143 additions and 16 deletions

View File

@ -134,5 +134,29 @@ namespace DysonNetwork.Sphere.Resources.Localization {
return ResourceManager.GetString("AuthCodeBody", resourceCulture);
}
}
internal static string SubscriptionAppliedTitle {
get {
return ResourceManager.GetString("SubscriptionAppliedTitle", resourceCulture);
}
}
internal static string SubscriptionAppliedBody {
get {
return ResourceManager.GetString("SubscriptionAppliedBody", resourceCulture);
}
}
internal static string OrderPaidTitle {
get {
return ResourceManager.GetString("OrderPaidTitle", resourceCulture);
}
}
internal static string OrderPaidBody {
get {
return ResourceManager.GetString("OrderPaidBody", resourceCulture);
}
}
}
}