21 lines
420 B
C#
21 lines
420 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Demo.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();
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|