2023-02-11 13:31:43 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2023-03-30 20:01:43 +00:00
|
|
|
|
namespace Pal.Client;
|
|
|
|
|
|
|
|
|
|
internal interface ILanguageChanged
|
2023-02-11 13:31:43 +00:00
|
|
|
|
{
|
2023-03-30 20:01:43 +00:00
|
|
|
|
void LanguageChanged();
|
2023-02-11 13:31:43 +00:00
|
|
|
|
}
|