Studety/Demo/Domain/Models/Group.cs

21 lines
420 B
C#
Raw Permalink Normal View History

2024-10-18 06:12:15 +00:00
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; }
2024-10-18 06:49:19 +00:00
public static implicit operator Group(GroupLocalEntity v)
{
throw new NotImplementedException();
}
2024-10-18 06:12:15 +00:00
}
}