30 lines
653 B
C#
30 lines
653 B
C#
using Blahblah.FlowerApp.Data.Model;
|
|
using static Blahblah.FlowerApp.Extensions;
|
|
|
|
namespace Blahblah.FlowerApp;
|
|
|
|
internal class AppResources
|
|
{
|
|
public const string EmptyCover = "empty_flower.jpg";
|
|
|
|
public const int EmptyUserId = -1;
|
|
|
|
public static readonly Size EmptySize = new(512, 339);
|
|
|
|
static readonly UserItem emptyUser = new()
|
|
{
|
|
Id = EmptyUserId,
|
|
Name = L("guest", "Guest")
|
|
};
|
|
static UserItem? user;
|
|
|
|
public static UserItem User => user ?? emptyUser;
|
|
|
|
public static bool IsLogined => user != null;
|
|
|
|
public static void SetUser(UserItem user)
|
|
{
|
|
AppResources.user = user;
|
|
}
|
|
}
|