Demo/Data/Entity/User.cs
2024-10-28 13:39:15 +03:00

13 lines
399 B
C#

namespace Demo.Domain.Models{
public class UserLocalEntity :IEquatable<UserLocalEntity>{
public required string FIO{get; set; }
public Guid Guid {get; set; }
public required int GroupID{get; set; }
public bool Equals(UserLocalEntity? other)
{
if (other == null) return false;
return this.Guid.Equals(other.Guid);
}
}
}