pr1/presence/data/LocalData/Entity/User.cs

21 lines
531 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;
namespace Demo.domain.Models
{
2024-12-19 17:36:57 +00:00
public class UserLocalEntity : IEquatable<UserLocalEntity>
2024-10-19 21:12:06 +00:00
{
public required string FIO { get; set; }
public Guid Guid { get; set; }
public required int GroupID { get; set; }
2024-12-19 17:36:57 +00:00
public bool Equals(UserLocalEntity? other)
2024-10-19 21:12:06 +00:00
{
if (other == null) return false;
return this.Guid.Equals(other.Guid);
}
}
2024-12-19 17:36:57 +00:00
}