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(); } } }