19 lines
412 B
C#
19 lines
412 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace AGSS.Models.Entities;
|
|
|
|
public class PlayerModel
|
|
{
|
|
[Key]
|
|
[MaxLength(150)]
|
|
public string Uuid { get; set; } = string.Empty;
|
|
|
|
[MaxLength(10)]
|
|
public required string Name { get; set;}
|
|
[MaxLength(1300)]
|
|
public required string Description { get; set;}
|
|
[MaxLength(150)]
|
|
public required string Asset { get; set;}
|
|
|
|
|
|
} |