2025-01-29 22:51:59 +13:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2024-10-29 12:44:28 +13:00
|
|
|
|
|
|
|
|
|
namespace EllieBot.Db.Models;
|
|
|
|
|
|
|
|
|
|
public class NCPixel
|
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2025-01-29 22:51:59 +13:00
|
|
|
|
public required int Position { get; init; }
|
|
|
|
|
|
2024-10-29 12:44:28 +13:00
|
|
|
|
public required long Price { get; init; }
|
2025-01-29 22:51:59 +13:00
|
|
|
|
|
2024-10-29 12:44:28 +13:00
|
|
|
|
public required ulong OwnerId { get; init; }
|
|
|
|
|
public required uint Color { get; init; }
|
2025-01-29 22:51:59 +13:00
|
|
|
|
|
2024-10-29 12:44:28 +13:00
|
|
|
|
[MaxLength(256)]
|
|
|
|
|
public required string Text { get; init; }
|
|
|
|
|
}
|