Raspisanie/Zurnal/Domain/Model/Group.cs

26 lines
596 B
C#
Raw Permalink Normal View History

2024-11-01 07:49:39 +00:00
using Zurnal.RemaDateBase.DateDao;
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; }
2024-11-01 07:49:39 +00:00
public static implicit operator Group?(GroupLocalEntity? v)
{
throw new NotImplementedException();
}
public static implicit operator Guid(Group v)
2024-10-21 11:56:16 +00:00
{
throw new NotImplementedException();
}
2024-11-01 07:49:39 +00:00
public static implicit operator Group?(GroupDao? v)
{
throw new NotImplementedException();
}
2024-10-21 11:56:16 +00:00
}
}