11 lines
217 B
C#
11 lines
217 B
C#
using System;
|
|
|
|
namespace Demo.Domain.Models
|
|
{
|
|
public class Group
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; } = string.Empty; // Переименован на Name
|
|
}
|
|
}
|