2024-10-28 08:22:33 +00:00
|
|
|
|
namespace Zurnal.domain.Models
|
2024-10-21 11:56:16 +00:00
|
|
|
|
{
|
|
|
|
|
public class Group
|
|
|
|
|
{
|
|
|
|
|
public required int Id { get; set; }
|
|
|
|
|
public required string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
public static implicit operator Group(GroupLocalEntity v)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|