2024-10-14 10:42:14 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2024-10-18 13:23:16 +00:00
|
|
|
|
namespace Demo.Domain.Models
|
2024-10-14 10:42:14 +00:00
|
|
|
|
{
|
|
|
|
|
public class Group
|
|
|
|
|
{
|
|
|
|
|
public required int Id { get; set; }
|
|
|
|
|
public required string Name { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|