12 lines
194 B
C#
12 lines
194 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace FabitArchiwum.Model;
|
|
|
|
public partial class Group
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; } = null!;
|
|
}
|