pr1/presence/domain/Entity/UserEntity.cs

16 lines
315 B
C#
Raw Normal View History

2024-10-19 21:12:06 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-12-05 09:30:01 +00:00
namespace domain.Entity
2024-10-19 21:12:06 +00:00
{
2024-12-05 09:30:01 +00:00
public class UserEntity
2024-10-19 21:12:06 +00:00
{
public Guid Guid { get; set; }
2024-12-05 09:30:01 +00:00
public string Name { get; set; }
public GroupEntity Group { get; set; }
2024-10-19 21:12:06 +00:00
}
}