15 lines
305 B
C#
15 lines
305 B
C#
namespace Zurnal.domain.Models
|
|
{
|
|
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();
|
|
}
|
|
|
|
}
|
|
}
|