2024-10-14 10:42:14 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Demo.domain.Models
|
|
|
|
|
{
|
2024-10-16 07:01:04 +00:00
|
|
|
|
public class UserLocalEnity : IEquatable<UserLocalEnity>
|
2024-10-14 10:42:14 +00:00
|
|
|
|
{
|
|
|
|
|
public required string FIO { get; set; }
|
|
|
|
|
public Guid Guid { get; set; }
|
2024-10-23 07:52:16 +00:00
|
|
|
|
public Guid Guid2 { get; set; }
|
2024-10-14 10:42:14 +00:00
|
|
|
|
|
|
|
|
|
public required int GroupID { get; set; }
|
2024-10-16 07:01:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public bool Equals(UserLocalEnity? other)
|
|
|
|
|
{
|
|
|
|
|
if (other == null) return false;
|
|
|
|
|
return this.Guid.Equals(other.Guid);
|
|
|
|
|
}
|
2024-10-14 10:42:14 +00:00
|
|
|
|
}
|
|
|
|
|
}
|