19 lines
423 B
C#
19 lines
423 B
C#
namespace Zurnal.domain.Models
|
|
{
|
|
public class UserLocalEnity : IEquatable<UserLocalEnity>
|
|
{
|
|
public required string FIO { get; set; }
|
|
public Guid Guid { get; set; }
|
|
|
|
public required int GroupID { get; set; }
|
|
|
|
|
|
|
|
public bool Equals(UserLocalEnity? other)
|
|
{
|
|
if (other == null) return false;
|
|
return this.Guid.Equals(other.Guid);
|
|
}
|
|
}
|
|
}
|