//
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
//
using Astral.Core.Attributes.EntityAnnotation;
namespace Astral.Core.Entities;
///
/// User locker entity.
///
[TableMapping("userLocker")]
public class UserLocker
{
///
/// User id.
///
[ColumnMapping("id")]
[PrimaryKey]
public Guid Id { get; set; }
///
/// Locker contents.
///
[ColumnMapping("contents")]
public string Contents { get; set; }
}