2024-10-21 11:56:16 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2024-10-23 08:14:10 +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();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|