slarny4/Demo1/Data/LocalData/Entity/Group.cs

11 lines
240 B
C#
Raw Normal View History

2024-10-21 22:57:01 +00:00
using System;
namespace Demo.Data.LocalData.Entity
{
public class Group
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty; // По умолчанию пустая строка
}
}