Files
work/Visor/Visor/Models/ObjectItems.cs
T
astankovmi 2883b537ab
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 11s
Проверки и отправка в Visor
2026-07-13 15:11:05 +03:00

13 lines
298 B
C#

using System.ComponentModel.DataAnnotations;
namespace Visor.Models
{
public class ObjectItems
{
[Key]
public Guid Id { get; set; }
public string NameObject { get; set; } = "Unknown";
public string DescriptionObject { get; set; } = string.Empty;
}
}